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

Side by Side Diff: third_party/WebKit/Source/core/page/Page.cpp

Issue 2772613002: [instrumentation] Rename InspectorInstrumentation into CoreProbes (Closed)
Patch Set: sinkFor -> toCoreProbesSink Created 3 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) 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013 Apple Inc. All 2 * Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013 Apple Inc. All
3 * Rights Reserved. 3 * Rights Reserved.
4 * Copyright (C) 2008 Torch Mobile Inc. All rights reserved. 4 * Copyright (C) 2008 Torch Mobile Inc. All rights reserved.
5 * (http://www.torchmobile.com/) 5 * (http://www.torchmobile.com/)
6 * 6 *
7 * This library is free software; you can redistribute it and/or 7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Library General Public 8 * modify it under the terms of the GNU Library General Public
9 * License as published by the Free Software Foundation; either 9 * License as published by the Free Software Foundation; either
10 * version 2 of the License, or (at your option) any later version. 10 * version 2 of the License, or (at your option) any later version.
(...skipping 26 matching lines...) Expand all
37 #include "core/frame/FrameHost.h" 37 #include "core/frame/FrameHost.h"
38 #include "core/frame/FrameView.h" 38 #include "core/frame/FrameView.h"
39 #include "core/frame/PageScaleConstraints.h" 39 #include "core/frame/PageScaleConstraints.h"
40 #include "core/frame/PageScaleConstraintsSet.h" 40 #include "core/frame/PageScaleConstraintsSet.h"
41 #include "core/frame/RemoteFrame.h" 41 #include "core/frame/RemoteFrame.h"
42 #include "core/frame/RemoteFrameView.h" 42 #include "core/frame/RemoteFrameView.h"
43 #include "core/frame/Settings.h" 43 #include "core/frame/Settings.h"
44 #include "core/frame/VisualViewport.h" 44 #include "core/frame/VisualViewport.h"
45 #include "core/html/HTMLMediaElement.h" 45 #include "core/html/HTMLMediaElement.h"
46 #include "core/inspector/ConsoleMessageStorage.h" 46 #include "core/inspector/ConsoleMessageStorage.h"
47 #include "core/inspector/InspectorInstrumentation.h" 47 #include "core/instrumentation/CoreProbes.h"
48 #include "core/layout/TextAutosizer.h" 48 #include "core/layout/TextAutosizer.h"
49 #include "core/page/AutoscrollController.h" 49 #include "core/page/AutoscrollController.h"
50 #include "core/page/ChromeClient.h" 50 #include "core/page/ChromeClient.h"
51 #include "core/page/ContextMenuController.h" 51 #include "core/page/ContextMenuController.h"
52 #include "core/page/DragController.h" 52 #include "core/page/DragController.h"
53 #include "core/page/FocusController.h" 53 #include "core/page/FocusController.h"
54 #include "core/page/PointerLockController.h" 54 #include "core/page/PointerLockController.h"
55 #include "core/page/ScopedPageSuspender.h" 55 #include "core/page/ScopedPageSuspender.h"
56 #include "core/page/ValidationMessageClient.h" 56 #include "core/page/ValidationMessageClient.h"
57 #include "core/page/scrolling/OverscrollController.h" 57 #include "core/page/scrolling/OverscrollController.h"
(...skipping 606 matching lines...) Expand 10 before | Expand all | Expand 10 after
664 : chromeClient(nullptr), 664 : chromeClient(nullptr),
665 contextMenuClient(nullptr), 665 contextMenuClient(nullptr),
666 editorClient(nullptr), 666 editorClient(nullptr),
667 spellCheckerClient(nullptr) {} 667 spellCheckerClient(nullptr) {}
668 668
669 Page::PageClients::~PageClients() {} 669 Page::PageClients::~PageClients() {}
670 670
671 template class CORE_TEMPLATE_EXPORT Supplement<Page>; 671 template class CORE_TEMPLATE_EXPORT Supplement<Page>;
672 672
673 } // namespace blink 673 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698