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

Unified Diff: chrome/browser/extensions/test_extension_service.cc

Issue 6965018: Install CRX updates one at a time. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Polish Created 9 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/extensions/test_extension_service.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/extensions/test_extension_service.cc
diff --git a/chrome/browser/extensions/test_extension_service.cc b/chrome/browser/extensions/test_extension_service.cc
index c03d4bb6c96c4f1ca512be2d6378fce93af20b8b..9937cbb4ff1af42a4d0b01fdb6415308e702d925 100644
--- a/chrome/browser/extensions/test_extension_service.cc
+++ b/chrome/browser/extensions/test_extension_service.cc
@@ -2,6 +2,7 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
+#include "chrome/browser/extensions/crx_installer.h"
#include "chrome/browser/extensions/extension_sync_data.h"
#include "chrome/browser/extensions/test_extension_service.h"
#include "testing/gtest/include/gtest/gtest.h"
@@ -18,10 +19,13 @@ PendingExtensionManager* TestExtensionService::pending_extension_manager() {
return NULL;
}
-void TestExtensionService::UpdateExtension(const std::string& id,
- const FilePath& path,
- const GURL& download_url) {
+bool TestExtensionService::UpdateExtension(
+ const std::string& id,
+ const FilePath& path,
+ const GURL& download_url,
+ CrxInstaller** out_crx_installer) {
ADD_FAILURE();
+ return NULL;
}
const Extension* TestExtensionService::GetExtensionById(
« no previous file with comments | « chrome/browser/extensions/test_extension_service.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698