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

Side by Side Diff: Source/core/page/DOMWindow.cpp

Issue 26848007: Move Navigation Timing and other various window-level objects out of page/ (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 2 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 | Annotate | Revision Log
« no previous file with comments | « Source/core/page/ConsoleTypes.h ('k') | Source/core/page/EventHandler.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2006, 2007, 2008, 2010 Apple Inc. All rights reserved. 2 * Copyright (C) 2006, 2007, 2008, 2010 Apple Inc. All rights reserved.
3 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies) 3 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies)
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions 6 * modification, are permitted provided that the following conditions
7 * are met: 7 * are met:
8 * 1. Redistributions of source code must retain the above copyright 8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright 10 * 2. Redistributions in binary form must reproduce the above copyright
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
44 #include "core/dom/Document.h" 44 #include "core/dom/Document.h"
45 #include "core/dom/Element.h" 45 #include "core/dom/Element.h"
46 #include "core/dom/ExceptionCode.h" 46 #include "core/dom/ExceptionCode.h"
47 #include "core/dom/RequestAnimationFrameCallback.h" 47 #include "core/dom/RequestAnimationFrameCallback.h"
48 #include "core/dom/ScriptExecutionContext.h" 48 #include "core/dom/ScriptExecutionContext.h"
49 #include "core/editing/Editor.h" 49 #include "core/editing/Editor.h"
50 #include "core/events/EventListener.h" 50 #include "core/events/EventListener.h"
51 #include "core/events/MessageEvent.h" 51 #include "core/events/MessageEvent.h"
52 #include "core/events/PageTransitionEvent.h" 52 #include "core/events/PageTransitionEvent.h"
53 #include "core/events/ThreadLocalEventNames.h" 53 #include "core/events/ThreadLocalEventNames.h"
54 #include "core/frame/Console.h"
55 #include "core/frame/History.h"
56 #include "core/frame/Location.h"
57 #include "core/frame/Navigator.h"
58 #include "core/frame/Screen.h"
54 #include "core/history/BackForwardController.h" 59 #include "core/history/BackForwardController.h"
55 #include "core/html/HTMLFrameOwnerElement.h" 60 #include "core/html/HTMLFrameOwnerElement.h"
56 #include "core/inspector/InspectorInstrumentation.h" 61 #include "core/inspector/InspectorInstrumentation.h"
57 #include "core/inspector/ScriptCallStack.h" 62 #include "core/inspector/ScriptCallStack.h"
58 #include "core/loader/DocumentLoader.h" 63 #include "core/loader/DocumentLoader.h"
59 #include "core/loader/FrameLoadRequest.h" 64 #include "core/loader/FrameLoadRequest.h"
60 #include "core/loader/FrameLoader.h" 65 #include "core/loader/FrameLoader.h"
61 #include "core/loader/FrameLoaderClient.h" 66 #include "core/loader/FrameLoaderClient.h"
62 #include "core/loader/appcache/ApplicationCache.h" 67 #include "core/loader/appcache/ApplicationCache.h"
63 #include "core/page/BarProp.h" 68 #include "core/page/BarProp.h"
64 #include "core/page/Chrome.h" 69 #include "core/page/Chrome.h"
65 #include "core/page/ChromeClient.h" 70 #include "core/page/ChromeClient.h"
66 #include "core/page/Console.h"
67 #include "core/page/CreateWindow.h" 71 #include "core/page/CreateWindow.h"
68 #include "core/page/DOMPoint.h" 72 #include "core/page/DOMPoint.h"
69 #include "core/page/DOMWindowLifecycleNotifier.h" 73 #include "core/page/DOMWindowLifecycleNotifier.h"
70 #include "core/page/EventHandler.h" 74 #include "core/page/EventHandler.h"
71 #include "core/page/Frame.h" 75 #include "core/page/Frame.h"
72 #include "core/page/FrameTree.h" 76 #include "core/page/FrameTree.h"
73 #include "core/page/FrameView.h" 77 #include "core/page/FrameView.h"
74 #include "core/page/History.h"
75 #include "core/page/Location.h"
76 #include "core/page/Navigator.h"
77 #include "core/page/Page.h" 78 #include "core/page/Page.h"
78 #include "core/page/PageConsole.h" 79 #include "core/page/PageConsole.h"
79 #include "core/page/PageGroup.h" 80 #include "core/page/PageGroup.h"
80 #include "core/page/Performance.h"
81 #include "core/page/Screen.h"
82 #include "core/page/Settings.h" 81 #include "core/page/Settings.h"
83 #include "core/page/WindowFeatures.h" 82 #include "core/page/WindowFeatures.h"
84 #include "core/page/WindowFocusAllowedIndicator.h" 83 #include "core/page/WindowFocusAllowedIndicator.h"
85 #include "core/page/scrolling/ScrollingCoordinator.h" 84 #include "core/page/scrolling/ScrollingCoordinator.h"
86 #include "core/platform/PlatformScreen.h" 85 #include "core/platform/PlatformScreen.h"
87 #include "core/platform/graphics/MediaPlayer.h" 86 #include "core/platform/graphics/MediaPlayer.h"
88 #include "core/storage/Storage.h" 87 #include "core/storage/Storage.h"
89 #include "core/storage/StorageArea.h" 88 #include "core/storage/StorageArea.h"
90 #include "core/storage/StorageNamespace.h" 89 #include "core/storage/StorageNamespace.h"
90 #include "core/timing/Performance.h"
91 #include "modules/device_orientation/NewDeviceOrientationController.h" 91 #include "modules/device_orientation/NewDeviceOrientationController.h"
92 #include "platform/UserGestureIndicator.h" 92 #include "platform/UserGestureIndicator.h"
93 #include "platform/geometry/FloatRect.h" 93 #include "platform/geometry/FloatRect.h"
94 #include "public/platform/Platform.h" 94 #include "public/platform/Platform.h"
95 #include "weborigin/KURL.h" 95 #include "weborigin/KURL.h"
96 #include "weborigin/SecurityOrigin.h" 96 #include "weborigin/SecurityOrigin.h"
97 #include "weborigin/SecurityPolicy.h" 97 #include "weborigin/SecurityPolicy.h"
98 #include "wtf/MainThread.h" 98 #include "wtf/MainThread.h"
99 #include "wtf/MathExtras.h" 99 #include "wtf/MathExtras.h"
100 #include "wtf/text/WTFString.h" 100 #include "wtf/text/WTFString.h"
(...skipping 1665 matching lines...) Expand 10 before | Expand all | Expand 10 after
1766 return static_cast<DOMWindowLifecycleNotifier*>(LifecycleContext::lifecycleN otifier()); 1766 return static_cast<DOMWindowLifecycleNotifier*>(LifecycleContext::lifecycleN otifier());
1767 } 1767 }
1768 1768
1769 PassOwnPtr<LifecycleNotifier> DOMWindow::createLifecycleNotifier() 1769 PassOwnPtr<LifecycleNotifier> DOMWindow::createLifecycleNotifier()
1770 { 1770 {
1771 return DOMWindowLifecycleNotifier::create(this); 1771 return DOMWindowLifecycleNotifier::create(this);
1772 } 1772 }
1773 1773
1774 1774
1775 } // namespace WebCore 1775 } // namespace WebCore
OLDNEW
« no previous file with comments | « Source/core/page/ConsoleTypes.h ('k') | Source/core/page/EventHandler.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698