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

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

Issue 1414663002: Mandoline webview: View => Window (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: More renaming 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
« no previous file with comments | « components/web_view/web_view_apptest.cc ('k') | components/web_view/web_view_impl.cc » ('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 #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 56 matching lines...) Expand 10 before | Expand all | Expand 10 after
67 void Find(const mojo::String& search_text, bool forward_direction) override; 67 void Find(const mojo::String& search_text, bool forward_direction) override;
68 void StopFinding() override; 68 void StopFinding() override;
69 void GoBack() override; 69 void GoBack() override;
70 void GoForward() override; 70 void GoForward() override;
71 71
72 // Overridden from mus::WindowTreeDelegate: 72 // Overridden from mus::WindowTreeDelegate:
73 void OnEmbed(mus::Window* root) override; 73 void OnEmbed(mus::Window* root) override;
74 void OnConnectionLost(mus::WindowTreeConnection* connection) override; 74 void OnConnectionLost(mus::WindowTreeConnection* connection) override;
75 75
76 // Overridden from mus::WindowObserver: 76 // Overridden from mus::WindowObserver:
77 void OnWindowBoundsChanged(mus::Window* view, 77 void OnWindowBoundsChanged(mus::Window* window,
78 const mojo::Rect& old_bounds, 78 const mojo::Rect& old_bounds,
79 const mojo::Rect& new_bounds) override; 79 const mojo::Rect& new_bounds) override;
80 void OnWindowDestroyed(mus::Window* view) override; 80 void OnWindowDestroyed(mus::Window* window) override;
81 81
82 // Overridden from FrameTreeDelegate: 82 // Overridden from FrameTreeDelegate:
83 scoped_ptr<FrameUserData> CreateUserDataForNewFrame( 83 scoped_ptr<FrameUserData> CreateUserDataForNewFrame(
84 mojom::FrameClientPtr frame_client) override; 84 mojom::FrameClientPtr frame_client) override;
85 bool CanPostMessageEventToFrame(const Frame* source, 85 bool CanPostMessageEventToFrame(const Frame* source,
86 const Frame* target, 86 const Frame* target,
87 mojom::HTMLMessageEvent* event) override; 87 mojom::HTMLMessageEvent* event) override;
88 void LoadingStateChanged(bool loading, double progress) override; 88 void LoadingStateChanged(bool loading, double progress) override;
89 void TitleChanged(const mojo::String& title) override; 89 void TitleChanged(const mojo::String& title) override;
90 void NavigateTopLevel(Frame* source, mojo::URLRequestPtr request) override; 90 void NavigateTopLevel(Frame* source, mojo::URLRequestPtr request) override;
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
131 NavigationController navigation_controller_; 131 NavigationController navigation_controller_;
132 132
133 FindController find_controller_; 133 FindController find_controller_;
134 134
135 DISALLOW_COPY_AND_ASSIGN(WebViewImpl); 135 DISALLOW_COPY_AND_ASSIGN(WebViewImpl);
136 }; 136 };
137 137
138 } // namespace web_view 138 } // namespace web_view
139 139
140 #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/web_view_apptest.cc ('k') | components/web_view/web_view_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698