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

Side by Side Diff: components/web_view/public/cpp/web_view.cc

Issue 1565343003: Move mojo/application/public -> mojo/shell/public (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@fetcher
Patch Set: . Created 4 years, 11 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 unified diff | Download patch
« no previous file with comments | « components/web_view/public/cpp/BUILD.gn ('k') | components/web_view/test_runner/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "components/web_view/public/cpp/web_view.h" 5 #include "components/web_view/public/cpp/web_view.h"
6 6
7 #include <stdint.h> 7 #include <stdint.h>
8 #include <utility> 8 #include <utility>
9 9
10 #include "base/bind.h" 10 #include "base/bind.h"
11 #include "components/mus/public/cpp/window.h" 11 #include "components/mus/public/cpp/window.h"
12 #include "mojo/application/public/cpp/application_impl.h" 12 #include "mojo/shell/public/cpp/application_impl.h"
13 13
14 namespace web_view { 14 namespace web_view {
15 namespace { 15 namespace {
16 16
17 void OnEmbed(bool success, uint16_t connection_id) { 17 void OnEmbed(bool success, uint16_t connection_id) {
18 CHECK(success); 18 CHECK(success);
19 } 19 }
20 20
21 } // namespace 21 } // namespace
22 22
(...skipping 11 matching lines...) Expand all
34 factory->CreateWebView(std::move(client), GetProxy(&web_view_)); 34 factory->CreateWebView(std::move(client), GetProxy(&web_view_));
35 35
36 mus::mojom::WindowTreeClientPtr window_tree_client; 36 mus::mojom::WindowTreeClientPtr window_tree_client;
37 web_view_->GetWindowTreeClient(GetProxy(&window_tree_client)); 37 web_view_->GetWindowTreeClient(GetProxy(&window_tree_client));
38 window->Embed(std::move(window_tree_client), 38 window->Embed(std::move(window_tree_client),
39 mus::mojom::WindowTree::ACCESS_POLICY_EMBED_ROOT, 39 mus::mojom::WindowTree::ACCESS_POLICY_EMBED_ROOT,
40 base::Bind(&OnEmbed)); 40 base::Bind(&OnEmbed));
41 } 41 }
42 42
43 } // namespace web_view 43 } // namespace web_view
OLDNEW
« no previous file with comments | « components/web_view/public/cpp/BUILD.gn ('k') | components/web_view/test_runner/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698