OLD | NEW |
(Empty) | |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #ifndef CHROME_BROWSER_EXTENSIONS_EXTERNAL_PREF_EXTENSION_LOADER_H_ |
| 6 #define CHROME_BROWSER_EXTENSIONS_EXTERNAL_PREF_EXTENSION_LOADER_H_ |
| 7 #pragma once |
| 8 |
| 9 #include "chrome/browser/extensions/external_extension_loader.h" |
| 10 |
| 11 #include <string> |
| 12 |
| 13 #include "base/scoped_ptr.h" |
| 14 #include "base/values.h" |
| 15 |
| 16 // A specialization of the ExternalExtensionLoader that uses a json file to |
| 17 // look up which external extensions are registered. |
| 18 // Instances of this class are expected to be created and destroyed on the UI |
| 19 // thread and they are expecting public method calls from the UI thread. |
| 20 class ExternalPrefExtensionLoader : public ExternalExtensionLoader { |
| 21 public: |
| 22 ExternalPrefExtensionLoader(); |
| 23 |
| 24 protected: |
| 25 virtual void StartLoading(); |
| 26 |
| 27 private: |
| 28 friend class base::RefCountedThreadSafe<ExternalExtensionLoader>; |
| 29 |
| 30 virtual ~ExternalPrefExtensionLoader() {} |
| 31 |
| 32 void LoadOnFileThread(); |
| 33 |
| 34 DISALLOW_COPY_AND_ASSIGN(ExternalPrefExtensionLoader); |
| 35 }; |
| 36 |
| 37 // A simplified version of ExternalPrefExtensionLoader that loads the dictionary |
| 38 // from json data specified in a string. |
| 39 class ExternalTestingExtensionLoader : public ExternalExtensionLoader { |
| 40 public: |
| 41 explicit ExternalTestingExtensionLoader(const std::string& json_data); |
| 42 |
| 43 protected: |
| 44 virtual void StartLoading(); |
| 45 |
| 46 private: |
| 47 friend class base::RefCountedThreadSafe<ExternalExtensionLoader>; |
| 48 |
| 49 virtual ~ExternalTestingExtensionLoader() {} |
| 50 |
| 51 scoped_ptr<DictionaryValue> testing_prefs_; |
| 52 |
| 53 DISALLOW_COPY_AND_ASSIGN(ExternalTestingExtensionLoader); |
| 54 }; |
| 55 |
| 56 #endif // CHROME_BROWSER_EXTENSIONS_EXTERNAL_PREF_EXTENSION_LOADER_H_ |
OLD | NEW |