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

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: moved initializeLayerTreeView() to WebKit::WebWidgetClient group 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
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 1132 matching lines...) Expand 10 before | Expand all | Expand 10 after
1555 // use the Observer interface to filter IPC messages and receive frame change 1556 // use the Observer interface to filter IPC messages and receive frame change
1556 // notifications. 1557 // notifications.
1557 // --------------------------------------------------------------------------- 1558 // ---------------------------------------------------------------------------
1558 1559
1559 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); 1560 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl);
1560 }; 1561 };
1561 1562
1562 } // namespace content 1563 } // namespace content
1563 1564
1564 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ 1565 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698