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

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

Issue 1447563002: Implement frame attribution (FrameBlamer) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Cleanup. Created 4 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 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 r ights reserved. 8 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All r ights reserved.
9 * Copyright (C) 2005 Alexey Proskuryakov <ap@nypop.com> 9 * Copyright (C) 2005 Alexey Proskuryakov <ap@nypop.com>
10 * Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies) 10 * Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies)
(...skipping 26 matching lines...) Expand all
37 #include "core/editing/InputMethodController.h" 37 #include "core/editing/InputMethodController.h"
38 #include "core/editing/serializers/Serialization.h" 38 #include "core/editing/serializers/Serialization.h"
39 #include "core/editing/spellcheck/SpellChecker.h" 39 #include "core/editing/spellcheck/SpellChecker.h"
40 #include "core/events/Event.h" 40 #include "core/events/Event.h"
41 #include "core/fetch/ResourceFetcher.h" 41 #include "core/fetch/ResourceFetcher.h"
42 #include "core/frame/EventHandlerRegistry.h" 42 #include "core/frame/EventHandlerRegistry.h"
43 #include "core/frame/FrameConsole.h" 43 #include "core/frame/FrameConsole.h"
44 #include "core/frame/FrameHost.h" 44 #include "core/frame/FrameHost.h"
45 #include "core/frame/FrameView.h" 45 #include "core/frame/FrameView.h"
46 #include "core/frame/LocalDOMWindow.h" 46 #include "core/frame/LocalDOMWindow.h"
47 #include "core/frame/RemoteFrame.h"
47 #include "core/frame/Settings.h" 48 #include "core/frame/Settings.h"
48 #include "core/html/HTMLFrameElementBase.h" 49 #include "core/html/HTMLFrameElementBase.h"
49 #include "core/html/HTMLPlugInElement.h" 50 #include "core/html/HTMLPlugInElement.h"
50 #include "core/input/EventHandler.h" 51 #include "core/input/EventHandler.h"
51 #include "core/inspector/ConsoleMessageStorage.h" 52 #include "core/inspector/ConsoleMessageStorage.h"
52 #include "core/inspector/InspectorInstrumentation.h" 53 #include "core/inspector/InspectorInstrumentation.h"
53 #include "core/inspector/InstrumentingAgents.h" 54 #include "core/inspector/InstrumentingAgents.h"
54 #include "core/layout/HitTestResult.h" 55 #include "core/layout/HitTestResult.h"
55 #include "core/layout/LayoutView.h" 56 #include "core/layout/LayoutView.h"
56 #include "core/layout/compositing/PaintLayerCompositor.h" 57 #include "core/layout/compositing/PaintLayerCompositor.h"
(...skipping 787 matching lines...) Expand 10 before | Expand all | Expand 10 after
844 { 845 {
845 if (isLocalRoot()) 846 if (isLocalRoot())
846 m_instrumentingAgents = InstrumentingAgents::create(); 847 m_instrumentingAgents = InstrumentingAgents::create();
847 else 848 else
848 m_instrumentingAgents = localFrameRoot()->m_instrumentingAgents; 849 m_instrumentingAgents = localFrameRoot()->m_instrumentingAgents;
849 } 850 }
850 851
851 WebFrameScheduler* LocalFrame::frameScheduler() 852 WebFrameScheduler* LocalFrame::frameScheduler()
852 { 853 {
853 if (!m_frameScheduler.get()) 854 if (!m_frameScheduler.get())
854 m_frameScheduler = page()->chromeClient().createFrameScheduler(); 855 m_frameScheduler = page()->chromeClient().createFrameScheduler(client()- >frameBlameContext());
855 856
856 ASSERT(m_frameScheduler.get()); 857 ASSERT(m_frameScheduler.get());
857 return m_frameScheduler.get(); 858 return m_frameScheduler.get();
858 } 859 }
859 860
860 void LocalFrame::scheduleVisualUpdateUnlessThrottled() 861 void LocalFrame::scheduleVisualUpdateUnlessThrottled()
861 { 862 {
862 if (shouldThrottleRendering()) 863 if (shouldThrottleRendering())
863 return; 864 return;
864 page()->animator().scheduleVisualUpdate(this); 865 page()->animator().scheduleVisualUpdate(this);
(...skipping 12 matching lines...) Expand all
877 { 878 {
878 m_frame->disableNavigation(); 879 m_frame->disableNavigation();
879 } 880 }
880 881
881 FrameNavigationDisabler::~FrameNavigationDisabler() 882 FrameNavigationDisabler::~FrameNavigationDisabler()
882 { 883 {
883 m_frame->enableNavigation(); 884 m_frame->enableNavigation();
884 } 885 }
885 886
886 } // namespace blink 887 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698