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

Unified Diff: third_party/WebKit/Source/core/css/cssom/CSSPositionValue.h

Issue 1958943002: Typed CSSOM: Rename PositionValue to CSSPositionValue (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 years, 7 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: third_party/WebKit/Source/core/css/cssom/CSSPositionValue.h
diff --git a/third_party/WebKit/Source/core/css/cssom/PositionValue.h b/third_party/WebKit/Source/core/css/cssom/CSSPositionValue.h
similarity index 73%
rename from third_party/WebKit/Source/core/css/cssom/PositionValue.h
rename to third_party/WebKit/Source/core/css/cssom/CSSPositionValue.h
index c4f01705af3fa1468e12d816e3714449d29f2fcc..a388aa6f950291ef4e67a06a0d8bf96365eb9198 100644
--- a/third_party/WebKit/Source/core/css/cssom/PositionValue.h
+++ b/third_party/WebKit/Source/core/css/cssom/CSSPositionValue.h
@@ -2,8 +2,8 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#ifndef PositionValue_h
-#define PositionValue_h
+#ifndef CSSPositionValue_h
+#define CSSPositionValue_h
#include "bindings/core/v8/ScriptWrappable.h"
#include "core/CoreExport.h"
@@ -13,13 +13,13 @@ namespace blink {
class LengthValue;
-class CORE_EXPORT PositionValue final : public StyleValue {
- WTF_MAKE_NONCOPYABLE(PositionValue);
+class CORE_EXPORT CSSPositionValue final : public StyleValue {
+ WTF_MAKE_NONCOPYABLE(CSSPositionValue);
DEFINE_WRAPPERTYPEINFO();
public:
- static PositionValue* create(const LengthValue* x, const LengthValue* y)
+ static CSSPositionValue* create(const LengthValue* x, const LengthValue* y)
{
- return new PositionValue(x, y);
+ return new CSSPositionValue(x, y);
}
// Bindings require a non const return value.
@@ -38,7 +38,7 @@ public:
}
protected:
- PositionValue(const LengthValue* x, const LengthValue* y)
+ CSSPositionValue(const LengthValue* x, const LengthValue* y)
: m_x(x)
, m_y(y)
{
« no previous file with comments | « third_party/WebKit/Source/core/core.gypi ('k') | third_party/WebKit/Source/core/css/cssom/CSSPositionValue.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698