OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 #include "extensions/browser/mock_extension_system.h" | 5 #include "extensions/browser/mock_extension_system.h" |
6 | 6 |
7 #include "extensions/common/extension_set.h" | 7 #include "extensions/common/extension_set.h" |
8 | 8 |
9 namespace extensions { | 9 namespace extensions { |
10 | 10 |
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
64 | 64 |
65 ContentVerifier* MockExtensionSystem::content_verifier() { | 65 ContentVerifier* MockExtensionSystem::content_verifier() { |
66 return nullptr; | 66 return nullptr; |
67 } | 67 } |
68 | 68 |
69 scoped_ptr<ExtensionSet> MockExtensionSystem::GetDependentExtensions( | 69 scoped_ptr<ExtensionSet> MockExtensionSystem::GetDependentExtensions( |
70 const Extension* extension) { | 70 const Extension* extension) { |
71 return scoped_ptr<ExtensionSet>(); | 71 return scoped_ptr<ExtensionSet>(); |
72 } | 72 } |
73 | 73 |
| 74 void MockExtensionSystem::InstallUpdate(const std::string& extension_id, |
| 75 const base::FilePath& temp_dir) { |
| 76 NOTREACHED(); |
| 77 } |
| 78 |
74 } // namespace extensions | 79 } // namespace extensions |
OLD | NEW |