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

Side by Side Diff: third_party/WebKit/Source/core/frame/LocalFrame.cpp

Issue 2774823002: Remove FrameHost class (Closed)
Patch Set: Rebase Created 3 years, 8 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 unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright (C) 1998, 1999 Torben Weis <weis@kde.org> 2 * Copyright (C) 1998, 1999 Torben Weis <weis@kde.org>
3 * 1999 Lars Knoll <knoll@kde.org> 3 * 1999 Lars Knoll <knoll@kde.org>
4 * 1999 Antti Koivisto <koivisto@kde.org> 4 * 1999 Antti Koivisto <koivisto@kde.org>
5 * 2000 Simon Hausmann <hausmann@kde.org> 5 * 2000 Simon Hausmann <hausmann@kde.org>
6 * 2000 Stefan Schimanski <1Stein@gmx.de> 6 * 2000 Stefan Schimanski <1Stein@gmx.de>
7 * 2001 George Staikos <staikos@kde.org> 7 * 2001 George Staikos <staikos@kde.org>
8 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All 8 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All
9 * rights reserved. 9 * rights reserved.
10 * Copyright (C) 2005 Alexey Proskuryakov <ap@nypop.com> 10 * Copyright (C) 2005 Alexey Proskuryakov <ap@nypop.com>
(...skipping 28 matching lines...) Expand all
39 #include "core/dom/StyleChangeReason.h" 39 #include "core/dom/StyleChangeReason.h"
40 #include "core/editing/EditingUtilities.h" 40 #include "core/editing/EditingUtilities.h"
41 #include "core/editing/Editor.h" 41 #include "core/editing/Editor.h"
42 #include "core/editing/FrameSelection.h" 42 #include "core/editing/FrameSelection.h"
43 #include "core/editing/InputMethodController.h" 43 #include "core/editing/InputMethodController.h"
44 #include "core/editing/serializers/Serialization.h" 44 #include "core/editing/serializers/Serialization.h"
45 #include "core/editing/spellcheck/SpellChecker.h" 45 #include "core/editing/spellcheck/SpellChecker.h"
46 #include "core/events/Event.h" 46 #include "core/events/Event.h"
47 #include "core/frame/EventHandlerRegistry.h" 47 #include "core/frame/EventHandlerRegistry.h"
48 #include "core/frame/FrameConsole.h" 48 #include "core/frame/FrameConsole.h"
49 #include "core/frame/FrameHost.h"
50 #include "core/frame/FrameView.h" 49 #include "core/frame/FrameView.h"
51 #include "core/frame/LocalDOMWindow.h" 50 #include "core/frame/LocalDOMWindow.h"
52 #include "core/frame/LocalFrameClient.h" 51 #include "core/frame/LocalFrameClient.h"
53 #include "core/frame/PerformanceMonitor.h" 52 #include "core/frame/PerformanceMonitor.h"
54 #include "core/frame/Settings.h" 53 #include "core/frame/Settings.h"
55 #include "core/frame/VisualViewport.h" 54 #include "core/frame/VisualViewport.h"
56 #include "core/html/HTMLFrameElementBase.h" 55 #include "core/html/HTMLFrameElementBase.h"
57 #include "core/html/HTMLPlugInElement.h" 56 #include "core/html/HTMLPlugInElement.h"
58 #include "core/input/EventHandler.h" 57 #include "core/input/EventHandler.h"
59 #include "core/inspector/ConsoleMessage.h" 58 #include "core/inspector/ConsoleMessage.h"
(...skipping 842 matching lines...) Expand 10 before | Expand all | Expand 10 after
902 if (m_frame && m_frame->client() && m_frame->client()->frameBlameContext()) 901 if (m_frame && m_frame->client() && m_frame->client()->frameBlameContext())
903 m_frame->client()->frameBlameContext()->Enter(); 902 m_frame->client()->frameBlameContext()->Enter();
904 } 903 }
905 904
906 ScopedFrameBlamer::~ScopedFrameBlamer() { 905 ScopedFrameBlamer::~ScopedFrameBlamer() {
907 if (m_frame && m_frame->client() && m_frame->client()->frameBlameContext()) 906 if (m_frame && m_frame->client() && m_frame->client()->frameBlameContext())
908 m_frame->client()->frameBlameContext()->Leave(); 907 m_frame->client()->frameBlameContext()->Leave();
909 } 908 }
910 909
911 } // namespace blink 910 } // namespace blink
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/frame/LocalDOMWindow.h ('k') | third_party/WebKit/Source/core/frame/LocalFrameTest.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698