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

Unified Diff: Source/core/css/CSSSVGDocumentValue.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/CSSSVGDocumentValue.h
diff --git a/Source/core/css/WebKitCSSSVGDocumentValue.h b/Source/core/css/CSSSVGDocumentValue.h
similarity index 81%
rename from Source/core/css/WebKitCSSSVGDocumentValue.h
rename to Source/core/css/CSSSVGDocumentValue.h
index c6af8c655e451253c3b8b9472a122ee6b6f017ee..fdb563164c6b8ae3b3b224c05a782c26cb04a0ce 100644
--- a/Source/core/css/WebKitCSSSVGDocumentValue.h
+++ b/Source/core/css/CSSSVGDocumentValue.h
@@ -22,8 +22,8 @@
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
-#ifndef WebKitCSSSVGDocumentValue_h
-#define WebKitCSSSVGDocumentValue_h
+#ifndef CSSSVGDocumentValue_h
+#define CSSSVGDocumentValue_h
#include "core/css/CSSValue.h"
#include "core/loader/cache/CachedDocument.h"
@@ -33,10 +33,10 @@ namespace WebCore {
class CachedResourceLoader;
-class WebKitCSSSVGDocumentValue : public CSSValue {
+class CSSSVGDocumentValue : public CSSValue {
public:
- static PassRefPtr<WebKitCSSSVGDocumentValue> create(const String& url) { return adoptRef(new WebKitCSSSVGDocumentValue(url)); }
- ~WebKitCSSSVGDocumentValue();
+ static PassRefPtr<CSSSVGDocumentValue> create(const String& url) { return adoptRef(new CSSSVGDocumentValue(url)); }
+ ~CSSSVGDocumentValue();
CachedDocument* cachedSVGDocument() const { return m_document.get(); }
CachedDocument* load(CachedResourceLoader*);
@@ -44,12 +44,12 @@ public:
String customCssText() const;
const String& url() const { return m_url; }
bool loadRequested() const { return m_loadRequested; }
- bool equals(const WebKitCSSSVGDocumentValue&) const;
+ bool equals(const CSSSVGDocumentValue&) const;
void reportDescendantMemoryUsage(MemoryObjectInfo*) const;
private:
- WebKitCSSSVGDocumentValue(const String& url);
+ CSSSVGDocumentValue(const String& url);
String m_url;
CachedResourceHandle<CachedDocument> m_document;
@@ -58,4 +58,4 @@ private:
} // namespace WebCore
-#endif // WebKitCSSSVGDocumentValue_h
+#endif // CSSSVGDocumentValue_h

Powered by Google App Engine
This is Rietveld 408576698