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

Unified Diff: Source/core/events/ApplicationCacheErrorEvent.h

Issue 1115553002: Removing blink::prefix (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebase Created 5 years, 8 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 | « Source/core/editing/EditorCommand.cpp ('k') | Source/core/events/ApplicationCacheErrorEvent.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/events/ApplicationCacheErrorEvent.h
diff --git a/Source/core/events/ApplicationCacheErrorEvent.h b/Source/core/events/ApplicationCacheErrorEvent.h
index 5640986f9cdd8d3f20f6c449590a1f746056fbc2..f44ecb80d586dfb9f136c1ed1ce30fe3c0b12214 100644
--- a/Source/core/events/ApplicationCacheErrorEvent.h
+++ b/Source/core/events/ApplicationCacheErrorEvent.h
@@ -22,7 +22,7 @@ public:
return adoptRefWillBeNoop(new ApplicationCacheErrorEvent);
}
- static PassRefPtrWillBeRawPtr<ApplicationCacheErrorEvent> create(blink::WebApplicationCacheHost::ErrorReason reason, const String& url, int status, const String& message)
+ static PassRefPtrWillBeRawPtr<ApplicationCacheErrorEvent> create(WebApplicationCacheHost::ErrorReason reason, const String& url, int status, const String& message)
{
return adoptRefWillBeNoop(new ApplicationCacheErrorEvent(reason, url, status, message));
}
@@ -43,7 +43,7 @@ public:
private:
ApplicationCacheErrorEvent();
- ApplicationCacheErrorEvent(blink::WebApplicationCacheHost::ErrorReason, const String& url, int status, const String& message);
+ ApplicationCacheErrorEvent(WebApplicationCacheHost::ErrorReason, const String& url, int status, const String& message);
ApplicationCacheErrorEvent(const AtomicString& eventType, const ApplicationCacheErrorEventInit& initializer);
String m_reason;
« no previous file with comments | « Source/core/editing/EditorCommand.cpp ('k') | Source/core/events/ApplicationCacheErrorEvent.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698