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

Side by Side Diff: components/html_viewer/html_frame.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
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_HTML_VIEWER_HTML_FRAME_H_ 5 #ifndef COMPONENTS_HTML_VIEWER_HTML_FRAME_H_
6 #define COMPONENTS_HTML_VIEWER_HTML_FRAME_H_ 6 #define COMPONENTS_HTML_VIEWER_HTML_FRAME_H_
7 7
8 #include <vector> 8 #include <vector>
9 9
10 #include "base/basictypes.h" 10 #include "base/basictypes.h"
(...skipping 259 matching lines...) Expand 10 before | Expand all | Expand 10 after
270 void OnWindowDestroyed(mus::Window* window) override; 270 void OnWindowDestroyed(mus::Window* window) override;
271 void OnWindowInputEvent(mus::Window* window, 271 void OnWindowInputEvent(mus::Window* window,
272 const mojo::EventPtr& event) override; 272 const mojo::EventPtr& event) override;
273 void OnWindowFocusChanged(mus::Window* gained_focus, 273 void OnWindowFocusChanged(mus::Window* gained_focus,
274 mus::Window* lost_focus) override; 274 mus::Window* lost_focus) override;
275 275
276 // web_view::mojom::FrameClient: 276 // web_view::mojom::FrameClient:
277 void OnConnect(web_view::mojom::FramePtr server, 277 void OnConnect(web_view::mojom::FramePtr server,
278 uint32_t change_id, 278 uint32_t change_id,
279 uint32_t window_id, 279 uint32_t window_id,
280 web_view::mojom::ViewConnectType view_connect_type, 280 web_view::mojom::WindowConnectType window_connect_type,
281 mojo::Array<web_view::mojom::FrameDataPtr> frame_data, 281 mojo::Array<web_view::mojom::FrameDataPtr> frame_data,
282 int64_t navigation_start_time_ticks, 282 int64_t navigation_start_time_ticks,
283 const OnConnectCallback& callback) override; 283 const OnConnectCallback& callback) override;
284 void OnFrameAdded(uint32_t change_id, 284 void OnFrameAdded(uint32_t change_id,
285 web_view::mojom::FrameDataPtr frame_data) override; 285 web_view::mojom::FrameDataPtr frame_data) override;
286 void OnFrameRemoved(uint32_t change_id, uint32_t frame_id) override; 286 void OnFrameRemoved(uint32_t change_id, uint32_t frame_id) override;
287 void OnFrameClientPropertyChanged(uint32_t frame_id, 287 void OnFrameClientPropertyChanged(uint32_t frame_id,
288 const mojo::String& name, 288 const mojo::String& name,
289 mojo::Array<uint8_t> new_value) override; 289 mojo::Array<uint8_t> new_value) override;
290 void OnPostMessageEvent( 290 void OnPostMessageEvent(
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after
368 base::TimeTicks navigation_start_time_; 368 base::TimeTicks navigation_start_time_;
369 369
370 base::WeakPtrFactory<HTMLFrame> weak_factory_; 370 base::WeakPtrFactory<HTMLFrame> weak_factory_;
371 371
372 DISALLOW_COPY_AND_ASSIGN(HTMLFrame); 372 DISALLOW_COPY_AND_ASSIGN(HTMLFrame);
373 }; 373 };
374 374
375 } // namespace html_viewer 375 } // namespace html_viewer
376 376
377 #endif // COMPONENTS_HTML_VIEWER_HTML_FRAME_H_ 377 #endif // COMPONENTS_HTML_VIEWER_HTML_FRAME_H_
OLDNEW
« no previous file with comments | « components/html_viewer/document_resource_waiter.cc ('k') | components/html_viewer/html_frame.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698