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

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

Issue 10536080: Plumb rendering statistics to benchmarking extension. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Stuff. Created 8 years, 6 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 (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 #pragma once 7 #pragma once
8 8
9 #include <deque> 9 #include <deque>
10 #include <map> 10 #include <map>
(...skipping 668 matching lines...) Expand 10 before | Expand all | Expand 10 after
679 virtual float GetFilteredTimePerFrame() const OVERRIDE; 679 virtual float GetFilteredTimePerFrame() const OVERRIDE;
680 virtual void ShowContextMenu(WebKit::WebFrame* frame, 680 virtual void ShowContextMenu(WebKit::WebFrame* frame,
681 const WebKit::WebContextMenuData& data) OVERRIDE; 681 const WebKit::WebContextMenuData& data) OVERRIDE;
682 virtual WebKit::WebPageVisibilityState GetVisibilityState() const OVERRIDE; 682 virtual WebKit::WebPageVisibilityState GetVisibilityState() const OVERRIDE;
683 virtual void RunModalAlertDialog(WebKit::WebFrame* frame, 683 virtual void RunModalAlertDialog(WebKit::WebFrame* frame,
684 const WebKit::WebString& message) OVERRIDE; 684 const WebKit::WebString& message) OVERRIDE;
685 virtual void LoadURLExternally( 685 virtual void LoadURLExternally(
686 WebKit::WebFrame* frame, 686 WebKit::WebFrame* frame,
687 const WebKit::WebURLRequest& request, 687 const WebKit::WebURLRequest& request,
688 WebKit::WebNavigationPolicy policy) OVERRIDE; 688 WebKit::WebNavigationPolicy policy) OVERRIDE;
689 689
nduca 2012/06/15 00:26:22 Once they're moved to the gpu benchmarking extensi
dtu 2012/06/20 00:57:32 Done.
690 virtual void GetRenderingStats(WebKit::WebRenderingStats&) const OVERRIDE;
691
690 // webkit_glue::WebPluginPageDelegate implementation ------------------------- 692 // webkit_glue::WebPluginPageDelegate implementation -------------------------
691 693
692 virtual webkit::npapi::WebPluginDelegate* CreatePluginDelegate( 694 virtual webkit::npapi::WebPluginDelegate* CreatePluginDelegate(
693 const FilePath& file_path, 695 const FilePath& file_path,
694 const std::string& mime_type) OVERRIDE; 696 const std::string& mime_type) OVERRIDE;
695 virtual WebKit::WebPlugin* CreatePluginReplacement( 697 virtual WebKit::WebPlugin* CreatePluginReplacement(
696 const FilePath& file_path) OVERRIDE; 698 const FilePath& file_path) OVERRIDE;
697 virtual void CreatedPluginWindow(gfx::PluginWindowHandle handle) OVERRIDE; 699 virtual void CreatedPluginWindow(gfx::PluginWindowHandle handle) OVERRIDE;
698 virtual void WillDestroyPluginWindow(gfx::PluginWindowHandle handle) OVERRIDE; 700 virtual void WillDestroyPluginWindow(gfx::PluginWindowHandle handle) OVERRIDE;
699 virtual void DidMovePlugin( 701 virtual void DidMovePlugin(
(...skipping 729 matching lines...) Expand 10 before | Expand all | Expand 10 after
1429 // bunch of stuff, you should probably create a helper class and put your 1431 // bunch of stuff, you should probably create a helper class and put your
1430 // data and methods on that to avoid bloating RenderView more. You can 1432 // data and methods on that to avoid bloating RenderView more. You can
1431 // use the Observer interface to filter IPC messages and receive frame change 1433 // use the Observer interface to filter IPC messages and receive frame change
1432 // notifications. 1434 // notifications.
1433 // --------------------------------------------------------------------------- 1435 // ---------------------------------------------------------------------------
1434 1436
1435 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); 1437 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl);
1436 }; 1438 };
1437 1439
1438 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ 1440 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698