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

Unified Diff: chrome/browser/extensions/stateful_external_extension_provider.h

Issue 5742008: Clean up threading model of external extension providers (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: final rebase Created 9 years, 11 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 | « chrome/browser/extensions/external_registry_extension_provider_win.h ('k') | chrome/chrome_browser.gypi » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/extensions/stateful_external_extension_provider.h
diff --git a/chrome/browser/extensions/stateful_external_extension_provider.h b/chrome/browser/extensions/stateful_external_extension_provider.h
deleted file mode 100644
index 2fd481cbbba2a926c2ecbe8d23d7630a7c263f88..0000000000000000000000000000000000000000
--- a/chrome/browser/extensions/stateful_external_extension_provider.h
+++ /dev/null
@@ -1,61 +0,0 @@
-// Copyright (c) 2009 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#ifndef CHROME_BROWSER_EXTENSIONS_STATEFUL_EXTERNAL_EXTENSION_PROVIDER_H_
-#define CHROME_BROWSER_EXTENSIONS_STATEFUL_EXTERNAL_EXTENSION_PROVIDER_H_
-#pragma once
-
-#include "chrome/browser/extensions/external_extension_provider.h"
-
-class DictionaryValue;
-class ValueSerializer;
-class Version;
-
-// A specialization of the ExternalExtensionProvider that stores the registered
-// external extensions in a dictionary. This dictionary (|prefs_|) will be used
-// by HasExtension() and GetExtensionDetails() to return information about the
-// stored external extensions. It is the responsibility of specialized
-// subclasses to initialize this internal dictionary.
-// 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
- // files: |crx_location|, and originating from update URLs:
- // |download_location|. If either of the origins is not supported by this
- // provider, then it should be initialized as Extensions::INVALID.
- StatefulExternalExtensionProvider(
- Extension::Location crx_location,
- Extension::Location download_location);
- virtual ~StatefulExternalExtensionProvider();
-
- // ExternalExtensionProvider implementation:
- virtual void VisitRegisteredExtension(Visitor* visitor) const;
-
- virtual bool HasExtension(const std::string& id) const;
-
- virtual bool GetExtensionDetails(const std::string& id,
- Extension::Location* location,
- scoped_ptr<Version>* version) const;
- protected:
- // Location for external extensions that are provided by this provider from
- // local crx files.
- const Extension::Location crx_location_;
- // 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_;
-};
-
-#endif // CHROME_BROWSER_EXTENSIONS_STATEFUL_EXTERNAL_EXTENSION_PROVIDER_H_
« no previous file with comments | « chrome/browser/extensions/external_registry_extension_provider_win.h ('k') | chrome/chrome_browser.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698