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

Unified Diff: services/window_manager/window_manager_api_unittest.cc

Issue 930243006: Simplify the ApplicationLoader interface in preparation for changes. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: ptal Created 5 years, 10 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 | « PRESUBMIT.py ('k') | shell/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: services/window_manager/window_manager_api_unittest.cc
diff --git a/services/window_manager/window_manager_api_unittest.cc b/services/window_manager/window_manager_api_unittest.cc
index a8f8d6a452410095ab4a100fa8c42bae67919205..dbd3da641092dcd8ec761e62aed63e2d1892e4b6 100644
--- a/services/window_manager/window_manager_api_unittest.cc
+++ b/services/window_manager/window_manager_api_unittest.cc
@@ -79,10 +79,9 @@ class TestApplicationLoader : public mojo::ApplicationLoader,
private:
// Overridden from mojo::ApplicationLoader:
- void Load(mojo::ApplicationManager* application_manager,
- const GURL& url,
- mojo::InterfaceRequest<mojo::Application> application_request,
- LoadCallback callback) override {
+ void Load(
+ const GURL& url,
+ mojo::InterfaceRequest<mojo::Application> application_request) override {
ASSERT_TRUE(application_request.is_pending());
scoped_ptr<ApplicationImpl> app(
new ApplicationImpl(this, application_request.Pass()));
« no previous file with comments | « PRESUBMIT.py ('k') | shell/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698