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

Side by Side Diff: chrome/browser/ui/browser.cc

Issue 808253006: Remove the GoogleURLTracker infobar functionality entirely. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Compile fixes Created 6 years 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
1 // Copyright 2012 The Chromium Authors. All rights reserved. 1 // Copyright 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "chrome/browser/ui/browser.h" 5 #include "chrome/browser/ui/browser.h"
6 6
7 #if defined(OS_WIN) 7 #if defined(OS_WIN)
8 #include <windows.h> 8 #include <windows.h>
9 #include <shellapi.h> 9 #include <shellapi.h>
10 #endif // defined(OS_WIN) 10 #endif // defined(OS_WIN)
(...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after
145 #include "chrome/common/profiling.h" 145 #include "chrome/common/profiling.h"
146 #include "chrome/common/search_types.h" 146 #include "chrome/common/search_types.h"
147 #include "chrome/common/url_constants.h" 147 #include "chrome/common/url_constants.h"
148 #include "chrome/grit/chromium_strings.h" 148 #include "chrome/grit/chromium_strings.h"
149 #include "chrome/grit/generated_resources.h" 149 #include "chrome/grit/generated_resources.h"
150 #include "chrome/grit/locale_settings.h" 150 #include "chrome/grit/locale_settings.h"
151 #include "components/app_modal/javascript_dialog_manager.h" 151 #include "components/app_modal/javascript_dialog_manager.h"
152 #include "components/bookmarks/browser/bookmark_model.h" 152 #include "components/bookmarks/browser/bookmark_model.h"
153 #include "components/bookmarks/browser/bookmark_utils.h" 153 #include "components/bookmarks/browser/bookmark_utils.h"
154 #include "components/content_settings/core/browser/host_content_settings_map.h" 154 #include "components/content_settings/core/browser/host_content_settings_map.h"
155 #include "components/google/core/browser/google_url_tracker.h"
156 #include "components/search/search.h" 155 #include "components/search/search.h"
157 #include "components/sessions/session_types.h" 156 #include "components/sessions/session_types.h"
158 #include "components/startup_metric_utils/startup_metric_utils.h" 157 #include "components/startup_metric_utils/startup_metric_utils.h"
159 #include "components/ui/zoom/zoom_controller.h" 158 #include "components/ui/zoom/zoom_controller.h"
160 #include "components/web_modal/popup_manager.h" 159 #include "components/web_modal/popup_manager.h"
161 #include "components/web_modal/web_contents_modal_dialog_manager.h" 160 #include "components/web_modal/web_contents_modal_dialog_manager.h"
162 #include "content/public/browser/devtools_agent_host.h" 161 #include "content/public/browser/devtools_agent_host.h"
163 #include "content/public/browser/download_item.h" 162 #include "content/public/browser/download_item.h"
164 #include "content/public/browser/download_manager.h" 163 #include "content/public/browser/download_manager.h"
165 #include "content/public/browser/interstitial_page.h" 164 #include "content/public/browser/interstitial_page.h"
(...skipping 2351 matching lines...) Expand 10 before | Expand all | Expand 10 after
2517 if (contents && !allow_js_access) { 2516 if (contents && !allow_js_access) {
2518 contents->web_contents()->GetController().LoadURL( 2517 contents->web_contents()->GetController().LoadURL(
2519 target_url, 2518 target_url,
2520 content::Referrer(), 2519 content::Referrer(),
2521 ui::PAGE_TRANSITION_LINK, 2520 ui::PAGE_TRANSITION_LINK,
2522 std::string()); // No extra headers. 2521 std::string()); // No extra headers.
2523 } 2522 }
2524 2523
2525 return contents != NULL; 2524 return contents != NULL;
2526 } 2525 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698