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

Unified Diff: Source/modules/serviceworkers/NavigatorServiceWorker.h

Issue 130693010: Rename NavigatorServiceWorkerInterface to ServiceWorkerContainer (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 10 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/modules/modules.gypi ('k') | Source/modules/serviceworkers/NavigatorServiceWorker.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/serviceworkers/NavigatorServiceWorker.h
diff --git a/Source/modules/serviceworkers/NavigatorServiceWorker.h b/Source/modules/serviceworkers/NavigatorServiceWorker.h
index 07c8e5d3907dd3bda704f6022d511d680d9df83b..a1249e2c07815a250909b4f439ce75d9aae86018 100644
--- a/Source/modules/serviceworkers/NavigatorServiceWorker.h
+++ b/Source/modules/serviceworkers/NavigatorServiceWorker.h
@@ -12,7 +12,7 @@
namespace WebCore {
class Navigator;
-class NavigatorServiceWorkerInterface;
+class ServiceWorkerContainer;
class NavigatorServiceWorker FINAL : public Supplement<Navigator>, DOMWindowProperty {
public:
@@ -21,13 +21,13 @@ public:
static NavigatorServiceWorker* toNavigatorServiceWorker(Navigator* navigator) { return static_cast<NavigatorServiceWorker*>(Supplement<Navigator>::from(navigator, supplementName())); }
static const char* supplementName();
- static NavigatorServiceWorkerInterface* serviceWorker(Navigator*);
+ static ServiceWorkerContainer* serviceWorker(Navigator*);
private:
explicit NavigatorServiceWorker(Navigator*);
- NavigatorServiceWorkerInterface* serviceWorker();
+ ServiceWorkerContainer* serviceWorker();
- RefPtr<NavigatorServiceWorkerInterface> m_serviceWorker;
+ RefPtr<ServiceWorkerContainer> m_serviceWorker;
};
} // namespace WebCore
« no previous file with comments | « Source/modules/modules.gypi ('k') | Source/modules/serviceworkers/NavigatorServiceWorker.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698