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

Unified Diff: chrome/browser/external_protocol/external_protocol_handler_unittest.cc

Issue 10539169: Prototype version of the first-run dialog for Windows 8 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fixed non-windows compilation errors. Created 8 years, 6 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/external_protocol/external_protocol_handler_unittest.cc
diff --git a/chrome/browser/external_protocol/external_protocol_handler_unittest.cc b/chrome/browser/external_protocol/external_protocol_handler_unittest.cc
index eba808d7a14fad52cd5807e6ea6bccae0ddeb8b6..607941fa072eb850060cd9da5c0f3b95a803c315 100644
--- a/chrome/browser/external_protocol/external_protocol_handler_unittest.cc
+++ b/chrome/browser/external_protocol/external_protocol_handler_unittest.cc
@@ -27,7 +27,10 @@ class FakeExternalProtocolHandlerWorker
return os_state_;
}
- virtual void SetAsDefault(bool interactive_permitted) {}
+ virtual ShellIntegration::SetDefaultWebClientResult
+ SetAsDefault(bool interactive_permitted) {
grt (UTC plus 2) 2012/06/18 19:19:13 add OVERRIDE while you're here
motek. 2012/06/19 18:06:44 Done.
+ return ShellIntegration::RESULT_SET_DEFAULT_OK;
+ }
ShellIntegration::DefaultWebClientState os_state_;
};

Powered by Google App Engine
This is Rietveld 408576698