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

Unified Diff: cc/layer_impl.h

Issue 11365025: Make cc a component (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix win?? Created 8 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: cc/layer_impl.h
diff --git a/cc/layer_impl.h b/cc/layer_impl.h
index 05f3b44f374c6259dd281adb592abeaf90ce17d3..e5a32b5a009987cd763754aed67cd0649e48ce75 100644
--- a/cc/layer_impl.h
+++ b/cc/layer_impl.h
@@ -5,11 +5,14 @@
#ifndef CCLayerImpl_h
#define CCLayerImpl_h
+#include <string>
+
#include "FloatRect.h"
#include "IntRect.h"
#include "Region.h"
#include "base/logging.h"
#include "base/memory/scoped_ptr.h"
+#include "cc/cc_export.h"
#include "cc/input_handler.h"
#include "cc/layer_animation_controller.h"
#include "cc/render_pass.h"
@@ -20,7 +23,6 @@
#include "third_party/skia/include/core/SkColor.h"
#include <public/WebFilterOperations.h>
#include <public/WebTransformationMatrix.h>
-#include <string>
namespace cc {
@@ -34,7 +36,7 @@ class Layer;
struct AppendQuadsData;
-class LayerImpl : public LayerAnimationControllerClient {
+class CC_EXPORT LayerImpl : public LayerAnimationControllerClient {
public:
static scoped_ptr<LayerImpl> create(int id)
{
@@ -394,6 +396,8 @@ private:
// Manages scrollbars for this layer
scoped_ptr<ScrollbarAnimationController> m_scrollbarAnimationController;
+
+ DISALLOW_COPY_AND_ASSIGN(LayerImpl);
};
void sortLayers(std::vector<LayerImpl*>::iterator first, std::vector<LayerImpl*>::iterator end, LayerSorter*);
« no previous file with comments | « cc/layer_animation_controller.h ('k') | cc/layer_iterator.h » ('j') | cc/occlusion_tracker.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698