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

Unified Diff: content/browser/aura/browser_compositor_output_surface_proxy.h

Issue 57883007: Adding support for VSyncProvider to the software drawing path (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Update Compositor constructor call Created 7 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
Index: content/browser/aura/browser_compositor_output_surface_proxy.h
diff --git a/content/browser/aura/browser_compositor_output_surface_proxy.h b/content/browser/aura/browser_compositor_output_surface_proxy.h
index 2a08d0a89ddc75cb42ce88f9148668351ae68a9a..0c5ffcd674014f7620fcefa64e0c77e336f1cb40 100644
--- a/content/browser/aura/browser_compositor_output_surface_proxy.h
+++ b/content/browser/aura/browser_compositor_output_surface_proxy.h
@@ -8,6 +8,7 @@
#include "base/id_map.h"
#include "base/memory/ref_counted.h"
#include "base/time/time.h"
+#include "content/common/content_export.h"
namespace base { class SingleThreadTaskRunner; }
@@ -17,7 +18,7 @@ namespace content {
class BrowserCompositorOutputSurface;
// Directs vsync updates to the appropriate BrowserCompositorOutputSurface.
-class BrowserCompositorOutputSurfaceProxy
+class CONTENT_EXPORT BrowserCompositorOutputSurfaceProxy
: public base::RefCountedThreadSafe<BrowserCompositorOutputSurfaceProxy> {
public:
BrowserCompositorOutputSurfaceProxy(
@@ -30,6 +31,7 @@ class BrowserCompositorOutputSurfaceProxy
private:
friend class base::RefCountedThreadSafe<BrowserCompositorOutputSurfaceProxy>;
+ friend class SoftwareBrowserCompositorOutputSurface;
~BrowserCompositorOutputSurfaceProxy();
void OnMessageReceivedOnCompositorThread(const IPC::Message& message);

Powered by Google App Engine
This is Rietveld 408576698