1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #include "chrome/browser/google/google_profile_helper.h"
7 #include "chrome/browser/google/google_url_tracker_factory.h"
8 #include "components/google/core/browser/google_url_tracker.h"
9 #include "components/google/core/browser/google_util.h"
12 namespace google_profile_helper
{
14 GURL
GetGoogleHomePageURL(Profile
* profile
) {
15 const GoogleURLTracker
* tracker
=
16 GoogleURLTrackerFactory::GetForProfile(profile
);
18 tracker
->google_url() : GURL(GoogleURLTracker::kDefaultGoogleHomepage
);
21 } // namespace google_profile_helper