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

Side by Side Diff: content/renderer/render_view_impl.h

Issue 16848010: Add LayerTreeHostClient::{will,did}UpdateLayer, report layer updates to DevTools (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: review comments addressed, try run Created 7 years, 5 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 | Annotate | Revision Log
« no previous file with comments | « content/renderer/gpu/render_widget_compositor.cc ('k') | content/renderer/render_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 (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ 5 #ifndef CONTENT_RENDERER_RENDER_VIEW_IMPL_H_
6 #define CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ 6 #define CONTENT_RENDERER_RENDER_VIEW_IMPL_H_
7 7
8 #include <deque> 8 #include <deque>
9 #include <map> 9 #include <map>
10 #include <set> 10 #include <set>
(...skipping 392 matching lines...) Expand 10 before | Expand all | Expand 10 after
403 virtual void show(WebKit::WebNavigationPolicy policy); 403 virtual void show(WebKit::WebNavigationPolicy policy);
404 virtual void runModal(); 404 virtual void runModal();
405 virtual bool enterFullScreen(); 405 virtual bool enterFullScreen();
406 virtual void exitFullScreen(); 406 virtual void exitFullScreen();
407 virtual bool requestPointerLock(); 407 virtual bool requestPointerLock();
408 virtual void requestPointerUnlock(); 408 virtual void requestPointerUnlock();
409 virtual bool isPointerLocked(); 409 virtual bool isPointerLocked();
410 virtual void didActivateCompositor(int input_handler_identifier); 410 virtual void didActivateCompositor(int input_handler_identifier);
411 virtual void didHandleGestureEvent(const WebKit::WebGestureEvent& event, 411 virtual void didHandleGestureEvent(const WebKit::WebGestureEvent& event,
412 bool event_cancelled) OVERRIDE; 412 bool event_cancelled) OVERRIDE;
413 virtual void initializeLayerTreeView() OVERRIDE;
413 414
414 // WebKit::WebViewClient implementation -------------------------------------- 415 // WebKit::WebViewClient implementation --------------------------------------
415 416
416 virtual WebKit::WebView* createView( 417 virtual WebKit::WebView* createView(
417 WebKit::WebFrame* creator, 418 WebKit::WebFrame* creator,
418 const WebKit::WebURLRequest& request, 419 const WebKit::WebURLRequest& request,
419 const WebKit::WebWindowFeatures& features, 420 const WebKit::WebWindowFeatures& features,
420 const WebKit::WebString& frame_name, 421 const WebKit::WebString& frame_name,
421 WebKit::WebNavigationPolicy policy); 422 WebKit::WebNavigationPolicy policy);
422 virtual WebKit::WebWidget* createPopupMenu(WebKit::WebPopupType popup_type); 423 virtual WebKit::WebWidget* createPopupMenu(WebKit::WebPopupType popup_type);
(...skipping 1134 matching lines...) Expand 10 before | Expand all | Expand 10 after
1557 // use the Observer interface to filter IPC messages and receive frame change 1558 // use the Observer interface to filter IPC messages and receive frame change
1558 // notifications. 1559 // notifications.
1559 // --------------------------------------------------------------------------- 1560 // ---------------------------------------------------------------------------
1560 1561
1561 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); 1562 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl);
1562 }; 1563 };
1563 1564
1564 } // namespace content 1565 } // namespace content
1565 1566
1566 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ 1567 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_
OLDNEW
« no previous file with comments | « content/renderer/gpu/render_widget_compositor.cc ('k') | content/renderer/render_view_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698