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

Unified Diff: chrome/browser/extensions/api/search_engines_private/search_engines_private_event_router_factory.h

Issue 1096143003: Add chrome.searchEnginesPrivate API and Search Settings page. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rename some things on the idl to match latest api spec. Created 5 years, 8 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
Index: chrome/browser/extensions/api/search_engines_private/search_engines_private_event_router_factory.h
diff --git a/chrome/browser/extensions/api/settings_private/settings_private_event_router_factory.h b/chrome/browser/extensions/api/search_engines_private/search_engines_private_event_router_factory.h
similarity index 50%
copy from chrome/browser/extensions/api/settings_private/settings_private_event_router_factory.h
copy to chrome/browser/extensions/api/search_engines_private/search_engines_private_event_router_factory.h
index 653c9bdb84f9a57633b04d4447cbaa17dfb7859b..b214255afbcfd1163c4454c2440a8ec1e0abd241 100644
--- a/chrome/browser/extensions/api/settings_private/settings_private_event_router_factory.h
+++ b/chrome/browser/extensions/api/search_engines_private/search_engines_private_event_router_factory.h
@@ -2,29 +2,29 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#ifndef CHROME_BROWSER_EXTENSIONS_API_SETTINGS_PRIVATE_SETTINGS_PRIVATE_EVENT_ROUTER_FACTORY_H_
-#define CHROME_BROWSER_EXTENSIONS_API_SETTINGS_PRIVATE_SETTINGS_PRIVATE_EVENT_ROUTER_FACTORY_H_
+#ifndef CHROME_BROWSER_EXTENSIONS_API_SEARCH_ENGINES_PRIVATE_SEARCH_ENGINES_PRIVATE_EVENT_ROUTER_FACTORY_H_
+#define CHROME_BROWSER_EXTENSIONS_API_SEARCH_ENGINES_PRIVATE_SEARCH_ENGINES_PRIVATE_EVENT_ROUTER_FACTORY_H_
#include "base/memory/singleton.h"
#include "components/keyed_service/content/browser_context_keyed_service_factory.h"
namespace extensions {
-class SettingsPrivateEventRouter;
+class SearchEnginesPrivateEventRouter;
// This is a factory class used by the BrowserContextDependencyManager
-// to instantiate the settingsPrivate event router per profile (since the
+// to instantiate the searchEnginesPrivate event router per profile (since the
// extension event router is per profile).
-class SettingsPrivateEventRouterFactory
+class SearchEnginesPrivateEventRouterFactory
: public BrowserContextKeyedServiceFactory {
public:
- // Returns the SettingsPrivateEventRouter for |profile|, creating it if
+ // Returns the SearchEnginesPrivateEventRouter for |profile|, creating it if
// it is not yet created.
- static SettingsPrivateEventRouter* GetForProfile(
+ static SearchEnginesPrivateEventRouter* GetForProfile(
content::BrowserContext* context);
- // Returns the SettingsPrivateEventRouterFactory instance.
- static SettingsPrivateEventRouterFactory* GetInstance();
+ // Returns the SearchEnginesPrivateEventRouterFactory instance.
+ static SearchEnginesPrivateEventRouterFactory* GetInstance();
protected:
// BrowserContextKeyedBaseFactory overrides:
@@ -34,18 +34,18 @@ class SettingsPrivateEventRouterFactory
bool ServiceIsNULLWhileTesting() const override;
private:
- friend struct DefaultSingletonTraits<SettingsPrivateEventRouterFactory>;
+ friend struct DefaultSingletonTraits<SearchEnginesPrivateEventRouterFactory>;
- SettingsPrivateEventRouterFactory();
- ~SettingsPrivateEventRouterFactory() override;
+ SearchEnginesPrivateEventRouterFactory();
+ ~SearchEnginesPrivateEventRouterFactory() override;
// BrowserContextKeyedServiceFactory:
KeyedService* BuildServiceInstanceFor(
content::BrowserContext* profile) const override;
- DISALLOW_COPY_AND_ASSIGN(SettingsPrivateEventRouterFactory);
+ DISALLOW_COPY_AND_ASSIGN(SearchEnginesPrivateEventRouterFactory);
};
} // namespace extensions
-#endif // CHROME_BROWSER_EXTENSIONS_API_SETTINGS_PRIVATE_SETTINGS_PRIVATE_EVENT_ROUTER_FACTORY_H_
+#endif // CHROME_BROWSER_EXTENSIONS_API_SEARCH_ENGINES_PRIVATE_SEARCH_ENGINES_PRIVATE_EVENT_ROUTER_FACTORY_H_

Powered by Google App Engine
This is Rietveld 408576698