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

Unified Diff: Source/core/loader/appcache/ApplicationCacheHost.h

Issue 22802012: Rename DOMApplicationCache to ApplicationCache and expose it to JS (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Remove change to devtools and fix nits Created 7 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 | « Source/core/loader/appcache/ApplicationCache.idl ('k') | Source/core/loader/appcache/DOMApplicationCache.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/loader/appcache/ApplicationCacheHost.h
diff --git a/Source/core/loader/appcache/ApplicationCacheHost.h b/Source/core/loader/appcache/ApplicationCacheHost.h
index 4d4490a1a8724017ccf7d8cba921eb0bc46da6b5..48d7b235c6ee97a046c482b601fa318361e3886f 100644
--- a/Source/core/loader/appcache/ApplicationCacheHost.h
+++ b/Source/core/loader/appcache/ApplicationCacheHost.h
@@ -39,7 +39,7 @@
#include "wtf/Vector.h"
namespace WebCore {
- class DOMApplicationCache;
+ class ApplicationCache;
class DocumentLoader;
class Frame;
class ResourceLoader;
@@ -125,8 +125,8 @@ namespace WebCore {
bool swapCache();
void abort();
- void setDOMApplicationCache(DOMApplicationCache*);
- void notifyDOMApplicationCache(EventID, int progressTotal, int progressDone);
+ void setApplicationCache(ApplicationCache*);
+ void notifyApplicationCache(EventID, int progressTotal, int progressDone);
void stopDeferringEvents(); // Also raises the events that have been queued up.
@@ -144,7 +144,7 @@ namespace WebCore {
DeferredEvent(EventID id, int total, int done) : eventID(id), progressTotal(total), progressDone(done) { }
};
- DOMApplicationCache* m_domApplicationCache;
+ ApplicationCache* m_domApplicationCache;
DocumentLoader* m_documentLoader;
bool m_defersEvents; // Events are deferred until after document onload.
Vector<DeferredEvent> m_deferredEvents;
« no previous file with comments | « Source/core/loader/appcache/ApplicationCache.idl ('k') | Source/core/loader/appcache/DOMApplicationCache.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698