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

Unified Diff: sky/engine/core/frame/LocalFrame.h

Issue 1210253005: Factor dart_init.cc out of dart_controller.cc (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 6 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 | « sky/engine/core/frame/LocalDOMWindow.cpp ('k') | sky/engine/core/frame/LocalFrame.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sky/engine/core/frame/LocalFrame.h
diff --git a/sky/engine/core/frame/LocalFrame.h b/sky/engine/core/frame/LocalFrame.h
index 27e8903890c979a28a3acd188e93e556ea283418..489bf08b08a14e8b3c78b754ef08e9e56a490869 100644
--- a/sky/engine/core/frame/LocalFrame.h
+++ b/sky/engine/core/frame/LocalFrame.h
@@ -93,7 +93,6 @@ namespace blink {
FrameSelection& selection() const;
InputMethodController& inputMethodController() const;
FetchContext& fetchContext() const;
- DartController& dart();
SpellChecker& spellChecker() const;
FrameConsole& console() const;
@@ -127,7 +126,6 @@ namespace blink {
RefPtr<FrameView> m_view;
- OwnPtr<DartController> m_dart;
const OwnPtr<Editor> m_editor;
const OwnPtr<SpellChecker> m_spellChecker;
const OwnPtr<FrameSelection> m_selection;
@@ -144,11 +142,6 @@ namespace blink {
return m_view.get();
}
- inline DartController& LocalFrame::dart()
- {
- return *m_dart;
- }
-
inline FrameSelection& LocalFrame::selection() const
{
return *m_selection;
« no previous file with comments | « sky/engine/core/frame/LocalDOMWindow.cpp ('k') | sky/engine/core/frame/LocalFrame.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698