| OLD | NEW |
| 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 #include "chrome/browser/extensions/crx_installer.h" | 5 #include "chrome/browser/extensions/crx_installer.h" |
| 6 #include "chrome/browser/extensions/test_extension_service.h" | 6 #include "chrome/browser/extensions/test_extension_service.h" |
| 7 #include "testing/gtest/include/gtest/gtest.h" | 7 #include "testing/gtest/include/gtest/gtest.h" |
| 8 | 8 |
| 9 using extensions::Extension; | 9 using extensions::Extension; |
| 10 | 10 |
| (...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 74 void TestExtensionService::AddExtension(const Extension* extension) { | 74 void TestExtensionService::AddExtension(const Extension* extension) { |
| 75 ADD_FAILURE(); | 75 ADD_FAILURE(); |
| 76 } | 76 } |
| 77 | 77 |
| 78 void TestExtensionService::AddComponentExtension(const Extension* extension) { | 78 void TestExtensionService::AddComponentExtension(const Extension* extension) { |
| 79 ADD_FAILURE(); | 79 ADD_FAILURE(); |
| 80 } | 80 } |
| 81 | 81 |
| 82 void TestExtensionService::UnloadExtension( | 82 void TestExtensionService::UnloadExtension( |
| 83 const std::string& extension_id, | 83 const std::string& extension_id, |
| 84 extensions::UnloadedExtensionInfo::Reason reason) { | 84 extensions::UnloadedExtensionReason reason) { |
| 85 ADD_FAILURE(); | 85 ADD_FAILURE(); |
| 86 } | 86 } |
| 87 | 87 |
| 88 void TestExtensionService::RemoveComponentExtension( | 88 void TestExtensionService::RemoveComponentExtension( |
| 89 const std::string& extension_id) { | 89 const std::string& extension_id) { |
| 90 ADD_FAILURE(); | 90 ADD_FAILURE(); |
| 91 } | 91 } |
| OLD | NEW |