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

Side by Side Diff: chrome/browser/extensions/extensions_service.h

Issue 243001: Implement Browser Actions extensions.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 3 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2009 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_EXTENSIONS_SERVICE_H_ 5 #ifndef CHROME_BROWSER_EXTENSIONS_EXTENSIONS_SERVICE_H_
6 #define CHROME_BROWSER_EXTENSIONS_EXTENSIONS_SERVICE_H_ 6 #define CHROME_BROWSER_EXTENSIONS_EXTENSIONS_SERVICE_H_
7 7
8 #include <map> 8 #include <map>
9 #include <set> 9 #include <set>
10 #include <string> 10 #include <string>
(...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after
95 const FilePath& install_directory() const { return install_directory_; } 95 const FilePath& install_directory() const { return install_directory_; }
96 96
97 // Initialize and start all installed extensions. 97 // Initialize and start all installed extensions.
98 void Init(); 98 void Init();
99 99
100 // Look up an extension by ID. 100 // Look up an extension by ID.
101 Extension* GetExtensionById(const std::string& id) { 101 Extension* GetExtensionById(const std::string& id) {
102 return GetExtensionByIdInternal(id, true, false); 102 return GetExtensionByIdInternal(id, true, false);
103 } 103 }
104 104
105 // Retrieves a vector of all page actions, irrespective of which 105 // Retrieves a vector of all page actions, irrespective of which extension
106 // extension they belong to. 106 // they belong to.
107 std::vector<PageAction*> GetPageActions() const; 107 std::vector<ContextualAction*> GetPageActions() const;
108
109 // Retrieves a vector of all browser actions, irrespective of which extension
110 // they belong to.
111 std::vector<ContextualAction*> GetBrowserActions() const;
108 112
109 // Install the extension file at |extension_path|. Will install as an 113 // Install the extension file at |extension_path|. Will install as an
110 // update if an older version is already installed. 114 // update if an older version is already installed.
111 // For fresh installs, this method also causes the extension to be 115 // For fresh installs, this method also causes the extension to be
112 // immediately loaded. 116 // immediately loaded.
113 // TODO(aa): This method can be removed. It is only used by the unit tests, 117 // TODO(aa): This method can be removed. It is only used by the unit tests,
114 // and they could use CrxInstaller directly instead. 118 // and they could use CrxInstaller directly instead.
115 void InstallExtension(const FilePath& extension_path); 119 void InstallExtension(const FilePath& extension_path);
116 120
117 // Updates a currently-installed extension with the contents from 121 // Updates a currently-installed extension with the contents from
(...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after
225 Extension* GetExtensionByIdInternal(const std::string& id, 229 Extension* GetExtensionByIdInternal(const std::string& id,
226 bool include_enabled, 230 bool include_enabled,
227 bool include_disabled); 231 bool include_disabled);
228 232
229 // Load a single extension from the prefs. This can be done on the UI thread 233 // Load a single extension from the prefs. This can be done on the UI thread
230 // because we don't touch the disk. 234 // because we don't touch the disk.
231 void LoadInstalledExtension( 235 void LoadInstalledExtension(
232 DictionaryValue* manifest, const std::string& id, 236 DictionaryValue* manifest, const std::string& id,
233 const FilePath& path, Extension::Location location); 237 const FilePath& path, Extension::Location location);
234 238
239 // Retrieves a vector of all page actions or browser actions, irrespective of
240 // which extension they belong to.
241 std::vector<ContextualAction*> GetContextualActions(
242 ContextualAction::ContextualActionType action_type) const;
243
235 // The profile this ExtensionsService is part of. 244 // The profile this ExtensionsService is part of.
236 Profile* profile_; 245 Profile* profile_;
237 246
238 // Preferences for the owning profile. 247 // Preferences for the owning profile.
239 scoped_ptr<ExtensionPrefs> extension_prefs_; 248 scoped_ptr<ExtensionPrefs> extension_prefs_;
240 249
241 // The message loop to use with the backend. 250 // The message loop to use with the backend.
242 MessageLoop* backend_loop_; 251 MessageLoop* backend_loop_;
243 252
244 // The current list of installed extensions. 253 // The current list of installed extensions.
(...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after
366 375
367 // A map of all external extension providers. 376 // A map of all external extension providers.
368 typedef std::map<Extension::Location, 377 typedef std::map<Extension::Location,
369 linked_ptr<ExternalExtensionProvider> > ProviderMap; 378 linked_ptr<ExternalExtensionProvider> > ProviderMap;
370 ProviderMap external_extension_providers_; 379 ProviderMap external_extension_providers_;
371 380
372 DISALLOW_COPY_AND_ASSIGN(ExtensionsServiceBackend); 381 DISALLOW_COPY_AND_ASSIGN(ExtensionsServiceBackend);
373 }; 382 };
374 383
375 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSIONS_SERVICE_H_ 384 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSIONS_SERVICE_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698