Chromium Code Reviews| 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; |