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

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

Issue 9706017: Remove Ordinals Setters and Getters from ExtensionService (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Created 8 years, 9 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/extension_sync_data.h" 6 #include "chrome/browser/extensions/extension_sync_data.h"
7 #include "chrome/browser/extensions/test_extension_service.h" 7 #include "chrome/browser/extensions/test_extension_service.h"
8 #include "testing/gtest/include/gtest/gtest.h" 8 #include "testing/gtest/include/gtest/gtest.h"
9 9
10 TestExtensionService::~TestExtensionService() {} 10 TestExtensionService::~TestExtensionService() {}
(...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after
98 bool TestExtensionService::AddExtension(const Extension* extension) { 98 bool TestExtensionService::AddExtension(const Extension* extension) {
99 ADD_FAILURE(); 99 ADD_FAILURE();
100 return false; 100 return false;
101 } 101 }
102 102
103 void TestExtensionService::UnloadExtension( 103 void TestExtensionService::UnloadExtension(
104 const std::string& extension_id, 104 const std::string& extension_id,
105 extension_misc::UnloadedExtensionReason reason) { 105 extension_misc::UnloadedExtensionReason reason) {
106 ADD_FAILURE(); 106 ADD_FAILURE();
107 } 107 }
108
109 void TestExtensionService::SyncExtensionChangeIfNeeded(
110 const Extension& extension) {
111 ADD_FAILURE();
112 }
OLDNEW
« no previous file with comments | « chrome/browser/extensions/test_extension_service.h ('k') | chrome/browser/sync/test/integration/sync_app_helper.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698