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

Side by Side Diff: components/web_view/web_view_impl.h

Issue 1406153004: components/mus/public/interfaces View => Window (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Yet another rebase Created 5 years, 2 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
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 #ifndef COMPONENTS_WEB_VIEW_WEB_VIEW_IMPL_H_ 5 #ifndef COMPONENTS_WEB_VIEW_WEB_VIEW_IMPL_H_
6 #define COMPONENTS_WEB_VIEW_WEB_VIEW_IMPL_H_ 6 #define COMPONENTS_WEB_VIEW_WEB_VIEW_IMPL_H_
7 7
8 #include <deque> 8 #include <deque>
9 #include <string> 9 #include <string>
10 10
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
55 friend class PendingWebViewLoad; 55 friend class PendingWebViewLoad;
56 56
57 // See description above |pending_load_| for details. 57 // See description above |pending_load_| for details.
58 void OnLoad(const GURL& pending_url); 58 void OnLoad(const GURL& pending_url);
59 59
60 // Flatten the frame tree in pre-order, depth first. 60 // Flatten the frame tree in pre-order, depth first.
61 void PreOrderDepthFirstTraverseTree(Frame* node, std::vector<Frame*>* output); 61 void PreOrderDepthFirstTraverseTree(Frame* node, std::vector<Frame*>* output);
62 62
63 // Overridden from WebView: 63 // Overridden from WebView:
64 void LoadRequest(mojo::URLRequestPtr request) override; 64 void LoadRequest(mojo::URLRequestPtr request) override;
65 void GetViewTreeClient( 65 void GetWindowTreeClient(mojo::InterfaceRequest<mus::mojom::WindowTreeClient>
66 mojo::InterfaceRequest<mojo::ViewTreeClient> view_tree_client) 66 window_tree_client) override;
67 override;
68 void Find(const mojo::String& search_text, bool forward_direction) override; 67 void Find(const mojo::String& search_text, bool forward_direction) override;
69 void StopFinding() override; 68 void StopFinding() override;
70 void GoBack() override; 69 void GoBack() override;
71 void GoForward() override; 70 void GoForward() override;
72 71
73 // Overridden from mus::WindowTreeDelegate: 72 // Overridden from mus::WindowTreeDelegate:
74 void OnEmbed(mus::Window* root) override; 73 void OnEmbed(mus::Window* root) override;
75 void OnConnectionLost(mus::WindowTreeConnection* connection) override; 74 void OnConnectionLost(mus::WindowTreeConnection* connection) override;
76 75
77 // Overridden from mus::WindowObserver: 76 // Overridden from mus::WindowObserver:
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
132 NavigationController navigation_controller_; 131 NavigationController navigation_controller_;
133 132
134 FindController find_controller_; 133 FindController find_controller_;
135 134
136 DISALLOW_COPY_AND_ASSIGN(WebViewImpl); 135 DISALLOW_COPY_AND_ASSIGN(WebViewImpl);
137 }; 136 };
138 137
139 } // namespace web_view 138 } // namespace web_view
140 139
141 #endif // COMPONENTS_WEB_VIEW_WEB_VIEW_IMPL_H_ 140 #endif // COMPONENTS_WEB_VIEW_WEB_VIEW_IMPL_H_
OLDNEW
« no previous file with comments | « components/web_view/test_runner/test_runner_application_delegate.h ('k') | components/web_view/web_view_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698