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

Unified Diff: chrome/browser/renderer_host/render_widget_host.h

Issue 4815001: Use inner HWND for accelerated rendering on windows (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 10 years, 1 month 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/gpu_process_host_ui_shim.cc ('k') | chrome/browser/renderer_host/render_widget_host.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/renderer_host/render_widget_host.h
===================================================================
--- chrome/browser/renderer_host/render_widget_host.h (revision 67491)
+++ chrome/browser/renderer_host/render_widget_host.h (working copy)
@@ -203,7 +203,9 @@
virtual void LostCapture();
// Tells us whether the page is rendered directly via the GPU process.
- bool is_gpu_rendering_active() { return is_gpu_rendering_active_; }
+ bool is_accelerated_compositing_active() {
+ return is_accelerated_compositing_active_;
+ }
// Notifies the RenderWidgetHost that the View was destroyed.
void ViewDestroyed();
@@ -484,7 +486,7 @@
const gfx::Rect& caret_rect);
void OnMsgImeCancelComposition();
- void OnMsgGpuRenderingActivated(bool activated);
+ void OnMsgDidActivateAcceleratedCompositing(bool activated);
#if defined(OS_MACOSX)
void OnMsgGetScreenInfo(gfx::NativeViewId view,
@@ -564,7 +566,7 @@
bool is_hidden_;
// True when a page is rendered directly via the GPU process.
- bool is_gpu_rendering_active_;
+ bool is_accelerated_compositing_active_;
// Set if we are waiting for a repaint ack for the view.
bool repaint_ack_pending_;
« no previous file with comments | « chrome/browser/gpu_process_host_ui_shim.cc ('k') | chrome/browser/renderer_host/render_widget_host.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698