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

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

Issue 384823002: Introduce a stable set of errors for inline install (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Replace printf with vlog(1) in unrelated code so it passes presubmit Created 6 years, 5 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
Index: chrome/browser/extensions/webstore_inline_installer_unittest.cc
diff --git a/chrome/browser/extensions/webstore_inline_installer_unittest.cc b/chrome/browser/extensions/webstore_inline_installer_unittest.cc
index f3fa393b2587610c1173cb6fd2dc529e2b4e39c8..493d3c9a787d7d383619177feb838ea9ae743be2 100644
--- a/chrome/browser/extensions/webstore_inline_installer_unittest.cc
+++ b/chrome/browser/extensions/webstore_inline_installer_unittest.cc
@@ -5,6 +5,7 @@
#include <vector>
#include "chrome/browser/extensions/webstore_inline_installer.h"
+#include "chrome/common/extensions/webstore_install_result.h"
#include "chrome/test/base/chrome_render_view_host_test_harness.h"
#include "content/public/browser/web_contents.h"
#include "testing/gtest/include/gtest/gtest.h"
@@ -30,7 +31,9 @@ class TestWebstoreInlineInstaller : public WebstoreInlineInstaller {
virtual ~TestWebstoreInlineInstaller();
};
-void TestInstallerCallback(bool success, const std::string& error) {}
+void TestInstallerCallback(bool success,
+ const std::string& error,
+ webstore_install::Result result) {}
TestWebstoreInlineInstaller::TestWebstoreInlineInstaller(
content::WebContents* contents,

Powered by Google App Engine
This is Rietveld 408576698