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

Unified Diff: chrome/browser/ui/webui/options/browser_options_handler.cc

Issue 312943002: Remove unused param from search engine extension override helper function. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Sync Created 6 years, 6 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/ui/views/settings_api_bubble_helper_views.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/ui/webui/options/browser_options_handler.cc
diff --git a/chrome/browser/ui/webui/options/browser_options_handler.cc b/chrome/browser/ui/webui/options/browser_options_handler.cc
index 04464575bfb1e7a236370c0f6a087c52c0cbb376..9f608f0fe2654a7377cf6b32756d089d2811ae6d 100644
--- a/chrome/browser/ui/webui/options/browser_options_handler.cc
+++ b/chrome/browser/ui/webui/options/browser_options_handler.cc
@@ -1756,17 +1756,17 @@ void BrowserOptionsHandler::SetupExtensionControlledIndicators() {
// Check if an extension is overriding the Search Engine.
const extensions::Extension* extension =
extensions::GetExtensionOverridingSearchEngine(
- Profile::FromWebUI(web_ui()), NULL);
+ Profile::FromWebUI(web_ui()));
AppendExtensionData("searchEngine", extension, &extension_controlled);
// Check if an extension is overriding the Home page.
extension = extensions::GetExtensionOverridingHomepage(
- Profile::FromWebUI(web_ui()), NULL);
+ Profile::FromWebUI(web_ui()));
AppendExtensionData("homePage", extension, &extension_controlled);
// Check if an extension is overriding the Startup pages.
extension = extensions::GetExtensionOverridingStartupPages(
- Profile::FromWebUI(web_ui()), NULL);
+ Profile::FromWebUI(web_ui()));
AppendExtensionData("startUpPage", extension, &extension_controlled);
// Check if an extension is overriding the NTP page.
« no previous file with comments | « chrome/browser/ui/views/settings_api_bubble_helper_views.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698