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

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

Issue 2468073002: Move LayerHitTestRects to a separate file. (Closed)
Patch Set: Created 4 years, 1 month 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 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
56 #include "core/frame/LocalFrame.h" 56 #include "core/frame/LocalFrame.h"
57 #include "core/frame/Settings.h" 57 #include "core/frame/Settings.h"
58 #include "core/frame/VisualViewport.h" 58 #include "core/frame/VisualViewport.h"
59 #include "core/frame/csp/ContentSecurityPolicy.h" 59 #include "core/frame/csp/ContentSecurityPolicy.h"
60 #include "core/html/HTMLFormElement.h" 60 #include "core/html/HTMLFormElement.h"
61 #include "core/html/HTMLFrameOwnerElement.h" 61 #include "core/html/HTMLFrameOwnerElement.h"
62 #include "core/html/parser/HTMLParserIdioms.h" 62 #include "core/html/parser/HTMLParserIdioms.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/inspector/InspectorInstrumentation.h"
66 #include "core/inspector/InspectorTraceEvents.h"
66 #include "core/loader/DocumentLoadTiming.h" 67 #include "core/loader/DocumentLoadTiming.h"
67 #include "core/loader/DocumentLoader.h" 68 #include "core/loader/DocumentLoader.h"
68 #include "core/loader/FormSubmission.h" 69 #include "core/loader/FormSubmission.h"
69 #include "core/loader/FrameLoadRequest.h" 70 #include "core/loader/FrameLoadRequest.h"
70 #include "core/loader/FrameLoaderClient.h" 71 #include "core/loader/FrameLoaderClient.h"
71 #include "core/loader/LinkLoader.h" 72 #include "core/loader/LinkLoader.h"
72 #include "core/loader/MixedContentChecker.h" 73 #include "core/loader/MixedContentChecker.h"
73 #include "core/loader/NavigationScheduler.h" 74 #include "core/loader/NavigationScheduler.h"
74 #include "core/loader/NetworkHintsInterface.h" 75 #include "core/loader/NetworkHintsInterface.h"
75 #include "core/loader/ProgressTracker.h" 76 #include "core/loader/ProgressTracker.h"
(...skipping 1854 matching lines...) Expand 10 before | Expand all | Expand 10 after
1930 m_documentLoader ? m_documentLoader->url() : String()); 1931 m_documentLoader ? m_documentLoader->url() : String());
1931 return tracedValue; 1932 return tracedValue;
1932 } 1933 }
1933 1934
1934 inline void FrameLoader::takeObjectSnapshot() const { 1935 inline void FrameLoader::takeObjectSnapshot() const {
1935 TRACE_EVENT_OBJECT_SNAPSHOT_WITH_ID("loading", "FrameLoader", this, 1936 TRACE_EVENT_OBJECT_SNAPSHOT_WITH_ID("loading", "FrameLoader", this,
1936 toTracedValue()); 1937 toTracedValue());
1937 } 1938 }
1938 1939
1939 } // namespace blink 1940 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698