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

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

Issue 140753005: Add the UI compositor to the Mac build (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 11 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
« no previous file with comments | « content/browser/aura/OWNERS ('k') | content/browser/aura/browser_compositor_output_surface.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/aura/browser_compositor_output_surface.h
diff --git a/content/browser/aura/browser_compositor_output_surface.h b/content/browser/aura/browser_compositor_output_surface.h
deleted file mode 100644
index 79f757a56a27204e6bcdbeea8c959d95bd867533..0000000000000000000000000000000000000000
--- a/content/browser/aura/browser_compositor_output_surface.h
+++ /dev/null
@@ -1,74 +0,0 @@
-// Copyright (c) 2013 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 CONTENT_BROWSER_AURA_BROWSER_COMPOSITOR_OUTPUT_SURFACE_H_
-#define CONTENT_BROWSER_AURA_BROWSER_COMPOSITOR_OUTPUT_SURFACE_H_
-
-#include "base/id_map.h"
-#include "base/memory/weak_ptr.h"
-#include "base/threading/non_thread_safe.h"
-#include "cc/output/output_surface.h"
-#include "content/common/content_export.h"
-
-namespace base { class MessageLoopProxy; }
-
-namespace cc {
-class SoftwareOutputDevice;
-}
-
-namespace ui { class Compositor; }
-
-namespace content {
-class ContextProviderCommandBuffer;
-class ReflectorImpl;
-class WebGraphicsContext3DCommandBufferImpl;
-
-class CONTENT_EXPORT BrowserCompositorOutputSurface
- : public cc::OutputSurface,
- public base::NonThreadSafe {
- public:
- virtual ~BrowserCompositorOutputSurface();
-
- // cc::OutputSurface implementation.
- virtual bool BindToClient(cc::OutputSurfaceClient* client) OVERRIDE;
- virtual void Reshape(gfx::Size size, float scale_factor) OVERRIDE;
-
- void OnUpdateVSyncParameters(base::TimeTicks timebase,
- base::TimeDelta interval);
-
- void SetReflector(ReflectorImpl* reflector);
-
- protected:
- // Constructor used by the accelerated implementation.
- BrowserCompositorOutputSurface(
- const scoped_refptr<ContextProviderCommandBuffer>& context,
- int surface_id,
- IDMap<BrowserCompositorOutputSurface>* output_surface_map,
- base::MessageLoopProxy* compositor_message_loop,
- base::WeakPtr<ui::Compositor> compositor);
-
- // Constructor used by the software implementation.
- BrowserCompositorOutputSurface(
- scoped_ptr<cc::SoftwareOutputDevice> software_device,
- int surface_id,
- IDMap<BrowserCompositorOutputSurface>* output_surface_map,
- base::MessageLoopProxy* compositor_message_loop,
- base::WeakPtr<ui::Compositor> compositor);
-
- int surface_id_;
- IDMap<BrowserCompositorOutputSurface>* output_surface_map_;
-
- scoped_refptr<base::MessageLoopProxy> compositor_message_loop_;
- base::WeakPtr<ui::Compositor> compositor_;
- scoped_refptr<ReflectorImpl> reflector_;
-
- private:
- void Initialize();
-
- DISALLOW_COPY_AND_ASSIGN(BrowserCompositorOutputSurface);
-};
-
-} // namespace content
-
-#endif // CONTENT_BROWSER_AURA_BROWSER_COMPOSITOR_OUTPUT_SURFACE_H_
« no previous file with comments | « content/browser/aura/OWNERS ('k') | content/browser/aura/browser_compositor_output_surface.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698