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

Side by Side Diff: third_party/WebKit/Source/core/loader/FrameLoader.cpp

Issue 2772613002: [instrumentation] Rename InspectorInstrumentation into CoreProbes (Closed)
Patch Set: sinkFor -> toCoreProbesSink 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) 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All rights 2 * Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All rights
3 * reserved. 3 * reserved.
4 * Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies) 4 * Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies)
5 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. 5 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved.
6 * (http://www.torchmobile.com/) 6 * (http://www.torchmobile.com/)
7 * Copyright (C) 2008 Alp Toker <alp@atoker.com> 7 * Copyright (C) 2008 Alp Toker <alp@atoker.com>
8 * Copyright (C) Research In Motion Limited 2009. All rights reserved. 8 * Copyright (C) Research In Motion Limited 2009. All rights reserved.
9 * Copyright (C) 2011 Kris Jordan <krisjordan@gmail.com> 9 * Copyright (C) 2011 Kris Jordan <krisjordan@gmail.com>
10 * Copyright (C) 2011 Google Inc. All rights reserved. 10 * Copyright (C) 2011 Google Inc. All rights reserved.
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
55 #include "core/frame/LocalDOMWindow.h" 55 #include "core/frame/LocalDOMWindow.h"
56 #include "core/frame/LocalFrame.h" 56 #include "core/frame/LocalFrame.h"
57 #include "core/frame/LocalFrameClient.h" 57 #include "core/frame/LocalFrameClient.h"
58 #include "core/frame/Settings.h" 58 #include "core/frame/Settings.h"
59 #include "core/frame/VisualViewport.h" 59 #include "core/frame/VisualViewport.h"
60 #include "core/frame/csp/ContentSecurityPolicy.h" 60 #include "core/frame/csp/ContentSecurityPolicy.h"
61 #include "core/html/HTMLFormElement.h" 61 #include "core/html/HTMLFormElement.h"
62 #include "core/html/HTMLFrameOwnerElement.h" 62 #include "core/html/HTMLFrameOwnerElement.h"
63 #include "core/input/EventHandler.h" 63 #include "core/input/EventHandler.h"
64 #include "core/inspector/ConsoleMessage.h" 64 #include "core/inspector/ConsoleMessage.h"
65 #include "core/inspector/InspectorInstrumentation.h" 65 #include "core/instrumentation/CoreProbes.h"
66 #include "core/loader/DocumentLoadTiming.h" 66 #include "core/loader/DocumentLoadTiming.h"
67 #include "core/loader/DocumentLoader.h" 67 #include "core/loader/DocumentLoader.h"
68 #include "core/loader/FormSubmission.h" 68 #include "core/loader/FormSubmission.h"
69 #include "core/loader/FrameLoadRequest.h" 69 #include "core/loader/FrameLoadRequest.h"
70 #include "core/loader/LinkLoader.h" 70 #include "core/loader/LinkLoader.h"
71 #include "core/loader/MixedContentChecker.h" 71 #include "core/loader/MixedContentChecker.h"
72 #include "core/loader/NavigationScheduler.h" 72 #include "core/loader/NavigationScheduler.h"
73 #include "core/loader/NetworkHintsInterface.h" 73 #include "core/loader/NetworkHintsInterface.h"
74 #include "core/loader/ProgressTracker.h" 74 #include "core/loader/ProgressTracker.h"
75 #include "core/loader/appcache/ApplicationCacheHost.h" 75 #include "core/loader/appcache/ApplicationCacheHost.h"
(...skipping 1826 matching lines...) Expand 10 before | Expand all | Expand 10 after
1902 frameLoadRequest.clientRedirect()); 1902 frameLoadRequest.clientRedirect());
1903 1903
1904 loader->setLoadType(loadType); 1904 loader->setLoadType(loadType);
1905 loader->setNavigationType(navigationType); 1905 loader->setNavigationType(navigationType);
1906 loader->setReplacesCurrentHistoryItem(loadType == 1906 loader->setReplacesCurrentHistoryItem(loadType ==
1907 FrameLoadTypeReplaceCurrentItem); 1907 FrameLoadTypeReplaceCurrentItem);
1908 return loader; 1908 return loader;
1909 } 1909 }
1910 1910
1911 } // namespace blink 1911 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698