Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(143)

Side by Side Diff: chrome/browser/google/google_profile_helper.cc

Issue 896943002: Use UIThreadSearchTermsData to get the Google base URL. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Compile fixes Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
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.
4
5 #include "chrome/browser/google/google_profile_helper.h"
6
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"
10 #include "url/gurl.h"
11
12 namespace google_profile_helper {
13
14 GURL GetGoogleHomePageURL(Profile* profile) {
15 const GoogleURLTracker* tracker =
16 GoogleURLTrackerFactory::GetForProfile(profile);
17 return tracker ?
18 tracker->google_url() : GURL(GoogleURLTracker::kDefaultGoogleHomepage);
19 }
20
21 } // namespace google_profile_helper
OLDNEW
« no previous file with comments | « chrome/browser/google/google_profile_helper.h ('k') | chrome/browser/search_engines/ui_thread_search_terms_data.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698