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

Side by Side Diff: chrome/browser/extensions/api/settings_overrides/settings_overrides_api.h

Issue 54273004: Add SettingsOverridesAPI dependence on TemplateURLServiceFactory. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Add a dependence on ExtensionPrefsFactory Created 7 years, 1 month 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 | Annotate | Revision Log
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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 #ifndef CHROME_BROWSER_EXTENSIONS_API_SETTINGS_OVERRIDES_SETTINGS_OVERRIDES_API_ H_ 5 #ifndef CHROME_BROWSER_EXTENSIONS_API_SETTINGS_OVERRIDES_SETTINGS_OVERRIDES_API_ H_
6 #define CHROME_BROWSER_EXTENSIONS_API_SETTINGS_OVERRIDES_SETTINGS_OVERRIDES_API_ H_ 6 #define CHROME_BROWSER_EXTENSIONS_API_SETTINGS_OVERRIDES_SETTINGS_OVERRIDES_API_ H_
7 7
8 #include <set> 8 #include <set>
9 #include <string> 9 #include <string>
10 10
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
57 // List of extensions waiting for the TemplateURLService to Load to 57 // List of extensions waiting for the TemplateURLService to Load to
58 // have search provider registered. 58 // have search provider registered.
59 PendingExtensions pending_extensions_; 59 PendingExtensions pending_extensions_;
60 60
61 content::NotificationRegistrar registrar_; 61 content::NotificationRegistrar registrar_;
62 scoped_ptr<TemplateURLService::Subscription> template_url_sub_; 62 scoped_ptr<TemplateURLService::Subscription> template_url_sub_;
63 63
64 DISALLOW_COPY_AND_ASSIGN(SettingsOverridesAPI); 64 DISALLOW_COPY_AND_ASSIGN(SettingsOverridesAPI);
65 }; 65 };
66 66
67 template <>
68 void ProfileKeyedAPIFactory<SettingsOverridesAPI>::DeclareFactoryDependencies();
69
67 } // namespace extensions 70 } // namespace extensions
68 71
69 #endif // CHROME_BROWSER_EXTENSIONS_API_SETTINGS_OVERRIDES_SETTINGS_OVERRIDES_A PI_H_ 72 #endif // CHROME_BROWSER_EXTENSIONS_API_SETTINGS_OVERRIDES_SETTINGS_OVERRIDES_A PI_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698