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

Unified Diff: third_party/WebKit/Source/core/style/StyleBoxData.h

Issue 2235823002: [layoutng] Add a basic unit test for NGBlockLayoutAlgorithm (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: One more try Created 4 years, 4 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 | « third_party/WebKit/Source/core/layout/ng/ng_block_layout_algorithm_test.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/style/StyleBoxData.h
diff --git a/third_party/WebKit/Source/core/style/StyleBoxData.h b/third_party/WebKit/Source/core/style/StyleBoxData.h
index 6086d3730587d9e73b4db80e8c9e243518bd2cab..0c5560094eb0d1aa0fb58638ead943518c42aab0 100644
--- a/third_party/WebKit/Source/core/style/StyleBoxData.h
+++ b/third_party/WebKit/Source/core/style/StyleBoxData.h
@@ -25,6 +25,7 @@
#ifndef StyleBoxData_h
#define StyleBoxData_h
+#include "core/CoreExport.h"
#include "core/style/ComputedStyleConstants.h"
#include "platform/Length.h"
#include "wtf/PassRefPtr.h"
@@ -35,7 +36,7 @@ namespace blink {
// TODO(sashab): Move this into a private class on ComputedStyle, and remove
// all methods on it, merging them into copy/creation methods on ComputedStyle
// instead. Keep the allocation logic, only allocating a new object if needed.
-class StyleBoxData : public RefCounted<StyleBoxData> {
+class CORE_EXPORT StyleBoxData : public RefCounted<StyleBoxData> {
public:
static PassRefPtr<StyleBoxData> create() { return adoptRef(new StyleBoxData); }
PassRefPtr<StyleBoxData> copy() const { return adoptRef(new StyleBoxData(*this)); }
« no previous file with comments | « third_party/WebKit/Source/core/layout/ng/ng_block_layout_algorithm_test.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698