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

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

Issue 1532413002: Added Dartium changes onto 45.0.2454.104 (Closed) Base URL: http://src.chromium.org/blink/branches/chromium/2454
Patch Set: Created 5 years 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/core/dom/ScriptLoader.cpp ('k') | Source/core/frame/LocalFrame.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/frame/LocalFrame.h
diff --git a/Source/core/frame/LocalFrame.h b/Source/core/frame/LocalFrame.h
index 4294e089d0beabce6f3fa3e4f13776918ee678d8..4fbeeb2183b4409ff9d2b8888591d38d1ec4a5b1 100644
--- a/Source/core/frame/LocalFrame.h
+++ b/Source/core/frame/LocalFrame.h
@@ -46,6 +46,7 @@
namespace blink {
class Color;
+ class DartController;
class Document;
class DragImage;
class Editor;
@@ -115,6 +116,7 @@ namespace blink {
FrameSelection& selection() const;
InputMethodController& inputMethodController() const;
ScriptController& script() const;
+ DartController& dart();
SpellChecker& spellChecker() const;
FrameConsole& console() const;
@@ -199,6 +201,7 @@ namespace blink {
RefPtrWillBeMember<Element> m_pagePopupOwner;
const OwnPtrWillBeMember<ScriptController> m_script;
+ OwnPtr<DartController> m_dart;
const OwnPtrWillBeMember<Editor> m_editor;
const OwnPtrWillBeMember<SpellChecker> m_spellChecker;
const OwnPtrWillBeMember<FrameSelection> m_selection;
@@ -261,6 +264,11 @@ namespace blink {
return *m_script;
}
+ inline DartController& LocalFrame::dart()
+ {
+ return *m_dart;
+ }
+
inline FrameSelection& LocalFrame::selection() const
{
return *m_selection;
« no previous file with comments | « Source/core/dom/ScriptLoader.cpp ('k') | Source/core/frame/LocalFrame.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698