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

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

Issue 1832853003: DefaultBrowserWorker now fully supports opening the settings for Win10 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix mac compilation Created 4 years, 8 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 0a2ac2941aa8afc1e0d1560564d9b5cd38d06657..41703eef035e67f5ad58520f0c1ccd20409d929a 100644
--- a/chrome/browser/external_protocol/external_protocol_handler_unittest.cc
+++ b/chrome/browser/external_protocol/external_protocol_handler_unittest.cc
@@ -27,7 +27,9 @@ class FakeExternalProtocolHandlerWorker
return os_state_;
}
- void SetAsDefaultImpl() override {}
+ void SetAsDefaultImpl(const base::Closure& on_finished_callback) override {
+ on_finished_callback.Run();
+ }
shell_integration::DefaultWebClientState os_state_;
};

Powered by Google App Engine
This is Rietveld 408576698