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

Unified Diff: ui/v2/src/view_private.cc

Issue 25757007: V2: Implement reparenting, bounds and visibility change notifications, and write more tests. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 7 years, 2 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: ui/v2/src/view_private.cc
diff --git a/ui/v2/src/paint_processor.h b/ui/v2/src/view_private.cc
similarity index 63%
copy from ui/v2/src/paint_processor.h
copy to ui/v2/src/view_private.cc
index d11e238ded3db228c350cdd2fa08f16538f88985..34a49c167f4cef6e5c4628d6cf1bd11d2e93b0e6 100644
--- a/ui/v2/src/paint_processor.h
+++ b/ui/v2/src/view_private.cc
@@ -2,11 +2,11 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#ifndef UI_V2_SRC_PAINT_PROCESSOR_H_
-#define UI_V2_SRC_PAINT_PROCESSOR_H_
+#include "ui/v2/src/view_private.h"
namespace v2 {
-} // namespace v2
+ViewPrivate::ViewPrivate(View* view) : view_(view) {}
+ViewPrivate::~ViewPrivate() {}
-#endif // UI_V2_SRC_PAINT_PROCESSOR_H_
+} // namespace v2

Powered by Google App Engine
This is Rietveld 408576698