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

Unified Diff: Source/core/css/CSSTransformValue.h

Issue 15797004: Cleanup WebKit prefixed names for classes in css directory. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 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: Source/core/css/CSSTransformValue.h
diff --git a/Source/core/css/WebKitCSSTransformValue.h b/Source/core/css/CSSTransformValue.h
similarity index 80%
rename from Source/core/css/WebKitCSSTransformValue.h
rename to Source/core/css/CSSTransformValue.h
index c35cde72d9445aa2f175596a2289750dcfc53414..635a60869831231bee543beb7a520410bbeeef48 100644
--- a/Source/core/css/WebKitCSSTransformValue.h
+++ b/Source/core/css/CSSTransformValue.h
@@ -23,16 +23,16 @@
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
-#ifndef WebKitCSSTransformValue_h
-#define WebKitCSSTransformValue_h
+#ifndef CSSTransformValue_h
+#define CSSTransformValue_h
#include "core/css/CSSValueList.h"
-#include <wtf/PassRefPtr.h>
-#include <wtf/RefPtr.h>
+#include "wtf/PassRefPtr.h"
+#include "wtf/RefPtr.h"
namespace WebCore {
-class WebKitCSSTransformValue : public CSSValueList {
+class CSSTransformValue : public CSSValueList {
public:
// NOTE: these have to match the values in the IDL
enum TransformOperationType {
@@ -60,24 +60,24 @@ public:
Matrix3DTransformOperation
};
- static PassRefPtr<WebKitCSSTransformValue> create(TransformOperationType type)
+ static PassRefPtr<CSSTransformValue> create(TransformOperationType type)
{
- return adoptRef(new WebKitCSSTransformValue(type));
+ return adoptRef(new CSSTransformValue(type));
}
String customCssText() const;
- bool equals(const WebKitCSSTransformValue& other) const { return m_type == other.m_type && CSSValueList::equals(other); }
+ bool equals(const CSSTransformValue& other) const { return m_type == other.m_type && CSSValueList::equals(other); }
String customSerializeResolvingVariables(const HashMap<AtomicString, String>&) const;
TransformOperationType operationType() const { return m_type; }
-
- PassRefPtr<WebKitCSSTransformValue> cloneForCSSOM() const;
+
+ PassRefPtr<CSSTransformValue> cloneForCSSOM() const;
void reportDescendantMemoryUsage(MemoryObjectInfo*) const;
private:
- WebKitCSSTransformValue(TransformOperationType);
- WebKitCSSTransformValue(const WebKitCSSTransformValue& cloneFrom);
+ CSSTransformValue(TransformOperationType);
+ CSSTransformValue(const CSSTransformValue& cloneFrom);
TransformOperationType m_type;
};

Powered by Google App Engine
This is Rietveld 408576698