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

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

Issue 118420: Adds kind-of-live thumbnail generation for a potential tab switcher. This... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/renderer_host/render_widget_host_painting_observer.h
===================================================================
--- chrome/browser/renderer_host/render_widget_host_painting_observer.h (revision 0)
+++ chrome/browser/renderer_host/render_widget_host_painting_observer.h (revision 0)
@@ -0,0 +1,24 @@
+// Copyright (c) 2009 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef CHROME_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_PAINTING_OBSERVER_H_
+#define CHROME_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_PAINTING_OBSERVER_H_
+
+class BackingStore;
+class RenderWidgetHost;
+
+// This class can be used to observe painting events for a RenderWidgetHost.
+// Its primary goal in Chrome is to allow thumbnails to be generated.
+class RenderWidgetHostPaintingObserver {
+ public:
+ // Indicates the RenderWidgetHost is about to destroy the backing store. The
+ // backing store will still be valid when this call is made.
+ virtual void WidgetWillDestroyBackingStore(RenderWidgetHost* widget,
+ BackingStore* backing_store) = 0;
+
+ // Indicates that the RenderWidgetHost just updated the backing store.
+ virtual void WidgetDidUpdateBackingStore(RenderWidgetHost* widget) = 0;
+};
+
+#endif // CHROME_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_PAINTING_OBSERVER_H_
Property changes on: chrome\browser\renderer_host\render_widget_host_painting_observer.h
___________________________________________________________________
Added: svn:eol-style
+ LF
« no previous file with comments | « chrome/browser/renderer_host/render_widget_host.cc ('k') | chrome/browser/renderer_host/render_widget_host_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698