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

Unified Diff: chrome/browser/extensions/settings_api_bubble_controller.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 | « no previous file | chrome/browser/extensions/settings_api_helpers.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/extensions/settings_api_bubble_controller.cc
diff --git a/chrome/browser/extensions/settings_api_bubble_controller.cc b/chrome/browser/extensions/settings_api_bubble_controller.cc
index 79d7eb71e3e3bc36342de496f63c62c7e219814a..f5721fe2cb34be02001007a067034c3a2ec64672 100644
--- a/chrome/browser/extensions/settings_api_bubble_controller.cc
+++ b/chrome/browser/extensions/settings_api_bubble_controller.cc
@@ -95,14 +95,14 @@ bool SettingsApiBubbleDelegate::ShouldIncludeExtension(
const Extension* override = NULL;
switch (type_) {
- case BUBBLE_TYPE_HOME_PAGE:
- override = GetExtensionOverridingHomepage(profile_, NULL);
+ case extensions::BUBBLE_TYPE_HOME_PAGE:
+ override = extensions::GetExtensionOverridingHomepage(profile_);
break;
- case BUBBLE_TYPE_STARTUP_PAGES:
- override = GetExtensionOverridingStartupPages(profile_, NULL);
+ case extensions::BUBBLE_TYPE_STARTUP_PAGES:
+ override = extensions::GetExtensionOverridingStartupPages(profile_);
break;
- case BUBBLE_TYPE_SEARCH_ENGINE:
- override = GetExtensionOverridingSearchEngine(profile_, NULL);
+ case extensions::BUBBLE_TYPE_SEARCH_ENGINE:
+ override = extensions::GetExtensionOverridingSearchEngine(profile_);
break;
}
« no previous file with comments | « no previous file | chrome/browser/extensions/settings_api_helpers.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698