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

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

Issue 22802012: Rename DOMApplicationCache to ApplicationCache and expose it to JS (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: 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
Index: Source/core/page/DOMWindow.h
diff --git a/Source/core/page/DOMWindow.h b/Source/core/page/DOMWindow.h
index 5d0fe153ac9be475800007b5d29065f5814cda7e..2ad5beb52cc3534befcd89adae9df7d1e71e0487 100644
--- a/Source/core/page/DOMWindow.h
+++ b/Source/core/page/DOMWindow.h
@@ -40,7 +40,7 @@ namespace WebCore {
class CSSRuleList;
class CSSStyleDeclaration;
class Console;
- class DOMApplicationCache;
+ class ApplicationCache;
tkent 2013/08/19 22:47:10 nit: sort alphabetically
do-not-use 2013/08/20 06:17:30 Done.
class DOMPoint;
class DOMSelection;
class DOMURL;
@@ -345,8 +345,8 @@ namespace WebCore {
Storage* optionalSessionStorage() const { return m_sessionStorage.get(); }
Storage* optionalLocalStorage() const { return m_localStorage.get(); }
- DOMApplicationCache* applicationCache() const;
- DOMApplicationCache* optionalApplicationCache() const { return m_applicationCache.get(); }
+ ApplicationCache* applicationCache() const;
+ ApplicationCache* optionalApplicationCache() const { return m_applicationCache.get(); }
#if ENABLE(ORIENTATION_EVENTS)
// This is the interface orientation in degrees. Some examples are:
@@ -422,7 +422,7 @@ namespace WebCore {
mutable RefPtr<Storage> m_sessionStorage;
mutable RefPtr<Storage> m_localStorage;
- mutable RefPtr<DOMApplicationCache> m_applicationCache;
+ mutable RefPtr<ApplicationCache> m_applicationCache;
mutable RefPtr<Performance> m_performance;

Powered by Google App Engine
This is Rietveld 408576698