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

Side by Side Diff: chrome/browser/extensions/external_pref_extension_loader.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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698