| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 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 | 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_EXTERNAL_PREF_EXTENSION_LOADER_H_ | 5 #ifndef CHROME_BROWSER_EXTENSIONS_EXTERNAL_PREF_EXTENSION_LOADER_H_ |
| 6 #define CHROME_BROWSER_EXTENSIONS_EXTERNAL_PREF_EXTENSION_LOADER_H_ | 6 #define CHROME_BROWSER_EXTENSIONS_EXTERNAL_PREF_EXTENSION_LOADER_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include "chrome/browser/extensions/external_extension_loader.h" | 9 #include "chrome/browser/extensions/external_extension_loader.h" |
| 10 | 10 |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 51 const FilePath& fake_base_path); | 51 const FilePath& fake_base_path); |
| 52 | 52 |
| 53 virtual const FilePath GetBaseCrxFilePath(); | 53 virtual const FilePath GetBaseCrxFilePath(); |
| 54 | 54 |
| 55 protected: | 55 protected: |
| 56 virtual void StartLoading(); | 56 virtual void StartLoading(); |
| 57 | 57 |
| 58 private: | 58 private: |
| 59 friend class base::RefCountedThreadSafe<ExternalExtensionLoader>; | 59 friend class base::RefCountedThreadSafe<ExternalExtensionLoader>; |
| 60 | 60 |
| 61 virtual ~ExternalTestingExtensionLoader() {} | 61 virtual ~ExternalTestingExtensionLoader(); |
| 62 | 62 |
| 63 FilePath fake_base_path_; | 63 FilePath fake_base_path_; |
| 64 scoped_ptr<DictionaryValue> testing_prefs_; | 64 scoped_ptr<DictionaryValue> testing_prefs_; |
| 65 | 65 |
| 66 DISALLOW_COPY_AND_ASSIGN(ExternalTestingExtensionLoader); | 66 DISALLOW_COPY_AND_ASSIGN(ExternalTestingExtensionLoader); |
| 67 }; | 67 }; |
| 68 | 68 |
| 69 #endif // CHROME_BROWSER_EXTENSIONS_EXTERNAL_PREF_EXTENSION_LOADER_H_ | 69 #endif // CHROME_BROWSER_EXTENSIONS_EXTERNAL_PREF_EXTENSION_LOADER_H_ |
| OLD | NEW |