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

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

Issue 2772613002: [instrumentation] Rename InspectorInstrumentation into CoreProbes (Closed)
Patch Set: fix typo 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 20 matching lines...) Expand all
31 #include "core/frame/Frame.h" 31 #include "core/frame/Frame.h"
32 32
33 #include "bindings/core/v8/WindowProxyManager.h" 33 #include "bindings/core/v8/WindowProxyManager.h"
34 #include "core/dom/DocumentType.h" 34 #include "core/dom/DocumentType.h"
35 #include "core/events/Event.h" 35 #include "core/events/Event.h"
36 #include "core/frame/LocalDOMWindow.h" 36 #include "core/frame/LocalDOMWindow.h"
37 #include "core/frame/Settings.h" 37 #include "core/frame/Settings.h"
38 #include "core/frame/UseCounter.h" 38 #include "core/frame/UseCounter.h"
39 #include "core/html/HTMLFrameElementBase.h" 39 #include "core/html/HTMLFrameElementBase.h"
40 #include "core/input/EventHandler.h" 40 #include "core/input/EventHandler.h"
41 #include "core/inspector/InspectorInstrumentation.h"
42 #include "core/layout/LayoutPart.h" 41 #include "core/layout/LayoutPart.h"
43 #include "core/layout/api/LayoutPartItem.h" 42 #include "core/layout/api/LayoutPartItem.h"
44 #include "core/loader/EmptyClients.h" 43 #include "core/loader/EmptyClients.h"
45 #include "core/loader/NavigationScheduler.h" 44 #include "core/loader/NavigationScheduler.h"
46 #include "core/page/FocusController.h" 45 #include "core/page/FocusController.h"
47 #include "core/page/Page.h" 46 #include "core/page/Page.h"
47 #include "core/probe/CoreProbes.h"
48 #include "platform/Histogram.h" 48 #include "platform/Histogram.h"
49 #include "platform/InstanceCounters.h" 49 #include "platform/InstanceCounters.h"
50 #include "platform/UserGestureIndicator.h" 50 #include "platform/UserGestureIndicator.h"
51 #include "platform/feature_policy/FeaturePolicy.h" 51 #include "platform/feature_policy/FeaturePolicy.h"
52 #include "platform/loader/fetch/ResourceError.h" 52 #include "platform/loader/fetch/ResourceError.h"
53 53
54 namespace blink { 54 namespace blink {
55 55
56 using namespace HTMLNames; 56 using namespace HTMLNames;
57 57
(...skipping 369 matching lines...) Expand 10 before | Expand all | Expand 10 after
427 m_isLoading(false) { 427 m_isLoading(false) {
428 InstanceCounters::incrementCounter(InstanceCounters::FrameCounter); 428 InstanceCounters::incrementCounter(InstanceCounters::FrameCounter);
429 429
430 if (m_owner) 430 if (m_owner)
431 m_owner->setContentFrame(*this); 431 m_owner->setContentFrame(*this);
432 else 432 else
433 m_page->setMainFrame(this); 433 m_page->setMainFrame(this);
434 } 434 }
435 435
436 } // namespace blink 436 } // namespace blink
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/frame/DOMWindow.cpp ('k') | third_party/WebKit/Source/core/frame/FrameView.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698