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

Unified Diff: third_party/WebKit/Source/core/timing/DOMWindowPerformance.h

Issue 2615633011: Remove ContextClient from DOMWindowPerformance (Closed)
Patch Set: Created 3 years, 11 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 | « no previous file | third_party/WebKit/Source/core/timing/DOMWindowPerformance.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/timing/DOMWindowPerformance.h
diff --git a/third_party/WebKit/Source/core/timing/DOMWindowPerformance.h b/third_party/WebKit/Source/core/timing/DOMWindowPerformance.h
index 77cf4632fb1ef47f0d68d0147cb05ae114388740..f59c30020098c86775b0eb5a4907c5a20fa0b461 100644
--- a/third_party/WebKit/Source/core/timing/DOMWindowPerformance.h
+++ b/third_party/WebKit/Source/core/timing/DOMWindowPerformance.h
@@ -6,7 +6,6 @@
#define DOMWindowPerformance_h
#include "core/CoreExport.h"
-#include "core/dom/ContextLifecycleObserver.h"
#include "core/frame/LocalDOMWindow.h"
#include "platform/Supplementable.h"
#include "platform/heap/Handle.h"
@@ -15,13 +14,11 @@
namespace blink {
class DOMWindow;
-class LocalDOMWindow;
class Performance;
class CORE_EXPORT DOMWindowPerformance final
: public GarbageCollected<DOMWindowPerformance>,
- public Supplement<LocalDOMWindow>,
- public ContextClient {
+ public Supplement<LocalDOMWindow> {
USING_GARBAGE_COLLECTED_MIXIN(DOMWindowPerformance);
WTF_MAKE_NONCOPYABLE(DOMWindowPerformance);
@@ -37,8 +34,6 @@ class CORE_EXPORT DOMWindowPerformance final
Performance* performance();
- // TODO(sof): try to move this direct reference and instead rely on frame().
- Member<LocalDOMWindow> m_window;
Member<Performance> m_performance;
};
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/timing/DOMWindowPerformance.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698