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

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

Issue 2839373003: struct UnloadedExtensionInfo -> enum UnloadedExtensionInfoReason (Closed)
Patch Set: Rebase Created 3 years, 7 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
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 #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
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 }
OLDNEW
« no previous file with comments | « chrome/browser/extensions/test_extension_service.h ('k') | chrome/browser/extensions/user_script_listener.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698