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

Side by Side Diff: chrome/browser/extensions/test_extension_service.h

Issue 709813004: Remove the deprecated function ExtensionService::extensions(). (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressed thestig@'s comments. Created 6 years, 1 month 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
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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_TEST_EXTENSION_SERVICE_H_ 5 #ifndef CHROME_BROWSER_EXTENSIONS_TEST_EXTENSION_SERVICE_H_
6 #define CHROME_BROWSER_EXTENSIONS_TEST_EXTENSION_SERVICE_H_ 6 #define CHROME_BROWSER_EXTENSIONS_TEST_EXTENSION_SERVICE_H_
7 7
8 #include <string> 8 #include <string>
9 #include <vector> 9 #include <vector>
10 10
11 #include "chrome/browser/extensions/extension_service.h" 11 #include "chrome/browser/extensions/extension_service.h"
12 12
13 namespace extensions { 13 namespace extensions {
14 class CrxInstaller; 14 class CrxInstaller;
15 class Extension; 15 class Extension;
16 } 16 }
17 17
18 // Implemention of ExtensionServiceInterface with default 18 // Implemention of ExtensionServiceInterface with default
19 // implementations for methods that add failures. You should subclass 19 // implementations for methods that add failures. You should subclass
20 // this and override the methods you care about. 20 // this and override the methods you care about.
21 class TestExtensionService : public ExtensionServiceInterface { 21 class TestExtensionService : public ExtensionServiceInterface {
22 public: 22 public:
23 ~TestExtensionService() override; 23 ~TestExtensionService() override;
24 24
25 // ExtensionServiceInterface implementation. 25 // ExtensionServiceInterface implementation.
26 const extensions::ExtensionSet* extensions() const override;
27 extensions::PendingExtensionManager* pending_extension_manager() override; 26 extensions::PendingExtensionManager* pending_extension_manager() override;
28 27
29 bool UpdateExtension(const std::string& id, 28 bool UpdateExtension(const std::string& id,
30 const base::FilePath& path, 29 const base::FilePath& path,
31 bool file_ownership_passed, 30 bool file_ownership_passed,
32 extensions::CrxInstaller** out_crx_installer) override; 31 extensions::CrxInstaller** out_crx_installer) override;
33 const extensions::Extension* GetExtensionById( 32 const extensions::Extension* GetExtensionById(
34 const std::string& id, 33 const std::string& id,
35 bool include_disabled) const override; 34 bool include_disabled) const override;
36 const extensions::Extension* GetInstalledExtension( 35 const extensions::Extension* GetInstalledExtension(
(...skipping 13 matching lines...) Expand all
50 void AddExtension(const extensions::Extension* extension) override; 49 void AddExtension(const extensions::Extension* extension) override;
51 void AddComponentExtension(const extensions::Extension* extension) override; 50 void AddComponentExtension(const extensions::Extension* extension) override;
52 51
53 void UnloadExtension( 52 void UnloadExtension(
54 const std::string& extension_id, 53 const std::string& extension_id,
55 extensions::UnloadedExtensionInfo::Reason reason) override; 54 extensions::UnloadedExtensionInfo::Reason reason) override;
56 void RemoveComponentExtension(const std::string& extension_id) override; 55 void RemoveComponentExtension(const std::string& extension_id) override;
57 }; 56 };
58 57
59 #endif // CHROME_BROWSER_EXTENSIONS_TEST_EXTENSION_SERVICE_H_ 58 #endif // CHROME_BROWSER_EXTENSIONS_TEST_EXTENSION_SERVICE_H_
OLDNEW
« no previous file with comments | « chrome/browser/extensions/plugin_apitest.cc ('k') | chrome/browser/extensions/test_extension_service.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698