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

Unified Diff: Source/core/page/DOMWindow.cpp

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/page/DOMWindow.h ('k') | Source/core/page/Window.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/page/DOMWindow.cpp
diff --git a/Source/core/page/DOMWindow.cpp b/Source/core/page/DOMWindow.cpp
index 30b1cdb32f9f5e3ecab938954a9987ee273b8d8f..a757402320dce5241bf3a6f677ebb3533ea70a7d 100644
--- a/Source/core/page/DOMWindow.cpp
+++ b/Source/core/page/DOMWindow.cpp
@@ -63,7 +63,7 @@
#include "core/loader/FrameLoadRequest.h"
#include "core/loader/FrameLoader.h"
#include "core/loader/FrameLoaderClient.h"
-#include "core/loader/appcache/DOMApplicationCache.h"
+#include "core/loader/appcache/ApplicationCache.h"
#include "core/page/BarProp.h"
#include "core/page/Chrome.h"
#include "core/page/ChromeClient.h"
@@ -594,12 +594,12 @@ PageConsole* DOMWindow::pageConsole() const
return m_frame->page() ? m_frame->page()->console() : 0;
}
-DOMApplicationCache* DOMWindow::applicationCache() const
+ApplicationCache* DOMWindow::applicationCache() const
{
if (!isCurrentlyDisplayedInFrame())
return 0;
if (!m_applicationCache)
- m_applicationCache = DOMApplicationCache::create(m_frame);
+ m_applicationCache = ApplicationCache::create(m_frame);
return m_applicationCache.get();
}
« no previous file with comments | « Source/core/page/DOMWindow.h ('k') | Source/core/page/Window.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698