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

Unified Diff: third_party/WebKit/Source/core/frame/LocalFrame.h

Issue 2710823003: NOCOMMIT prototype: GRC service plumbing and process priority
Patch Set: Buildfixes Created 3 years, 9 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: third_party/WebKit/Source/core/frame/LocalFrame.h
diff --git a/third_party/WebKit/Source/core/frame/LocalFrame.h b/third_party/WebKit/Source/core/frame/LocalFrame.h
index da489be69d7225e125b14e155c80f18b26159259..1cb3e7e34faccf37d18b4e433cf5e0b68c48d324 100644
--- a/third_party/WebKit/Source/core/frame/LocalFrame.h
+++ b/third_party/WebKit/Source/core/frame/LocalFrame.h
@@ -56,6 +56,7 @@ class EphemeralRangeTemplate;
class EventHandler;
class FloatSize;
class FrameConsole;
+class FrameResourceCoordinator;
class FrameSelection;
class FrameView;
class InputMethodController;
@@ -217,6 +218,10 @@ class CORE_EXPORT LocalFrame final : public Frame,
InterfaceProvider* interfaceProvider() { return m_interfaceProvider; }
InterfaceRegistry* interfaceRegistry() { return m_interfaceRegistry; }
+ FrameResourceCoordinator* frameResourceCoordinator() {
+ return m_frameResourceCoordinator;
+ }
+
LocalFrameClient* client() const;
PluginData* pluginData() const;
@@ -273,6 +278,8 @@ class CORE_EXPORT LocalFrame final : public Frame,
InterfaceProvider* const m_interfaceProvider;
InterfaceRegistry* const m_interfaceRegistry;
+
+ Member<FrameResourceCoordinator> m_frameResourceCoordinator;
};
inline void LocalFrame::init() {

Powered by Google App Engine
This is Rietveld 408576698