diff options
author | Kristian Monsen <kristianm@google.com> | 2011-05-11 20:53:37 +0100 |
---|---|---|
committer | Kristian Monsen <kristianm@google.com> | 2011-05-16 13:54:48 +0100 |
commit | 21d179b334e59e9a3bfcaed4c4430bef1bc5759d (patch) | |
tree | 64e2bb6da27af6a5c93ca34f6051584aafbfcb9e /chrome/browser/extensions/stateful_external_extension_provider.h | |
parent | 0c63f00edd6ed0482fd5cbcea937ca088baf7858 (diff) | |
download | external_chromium-21d179b334e59e9a3bfcaed4c4430bef1bc5759d.zip external_chromium-21d179b334e59e9a3bfcaed4c4430bef1bc5759d.tar.gz external_chromium-21d179b334e59e9a3bfcaed4c4430bef1bc5759d.tar.bz2 |
Merge Chromium at 10.0.621.0: Initial merge by git.
Change-Id: I070cc91c608dfa4a968a5a54c173260765ac8097
Diffstat (limited to 'chrome/browser/extensions/stateful_external_extension_provider.h')
-rw-r--r-- | chrome/browser/extensions/stateful_external_extension_provider.h | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/chrome/browser/extensions/stateful_external_extension_provider.h b/chrome/browser/extensions/stateful_external_extension_provider.h index 506873d..2fd481c 100644 --- a/chrome/browser/extensions/stateful_external_extension_provider.h +++ b/chrome/browser/extensions/stateful_external_extension_provider.h @@ -6,9 +6,6 @@ #define CHROME_BROWSER_EXTENSIONS_STATEFUL_EXTERNAL_EXTENSION_PROVIDER_H_ #pragma once -#include <set> -#include <string> - #include "chrome/browser/extensions/external_extension_provider.h" class DictionaryValue; @@ -23,6 +20,8 @@ class Version; // This provider can provide external extensions from two sources: crx files // and udpate URLs. The locations that the provider will report for these // are specified at the constructor. +// Instances of this class are expected to be created and destroyed on the UI +// thread and they are expecting public method calls from the FILE thread. class StatefulExternalExtensionProvider : public ExternalExtensionProvider { public: // Initialize the location for external extensions originating from crx @@ -35,8 +34,7 @@ class StatefulExternalExtensionProvider : public ExternalExtensionProvider { virtual ~StatefulExternalExtensionProvider(); // ExternalExtensionProvider implementation: - virtual void VisitRegisteredExtension( - Visitor* visitor, const std::set<std::string>& ids_to_ignore) const; + virtual void VisitRegisteredExtension(Visitor* visitor) const; virtual bool HasExtension(const std::string& id) const; @@ -50,6 +48,12 @@ class StatefulExternalExtensionProvider : public ExternalExtensionProvider { // Location for external extensions that are provided by this provider from // update URLs. const Extension::Location download_location_; + + // Stores the dictionary of external extensions internally. Takes ownership + // of |prefs|. + void set_prefs(DictionaryValue* prefs); + + private: // Dictionary of the external extensions that are provided by this provider. scoped_ptr<DictionaryValue> prefs_; }; |