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

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

Issue 27048004: Move PlatformScreen, PlatformScreenChromium, and Widget to Source/platform (Closed) Base URL: https://chromium.googlesource.com/chromium/blink@master
Patch Set: Rebase to apply to trunk 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
« no previous file with comments | « Source/core/css/MediaQueryEvaluator.cpp ('k') | Source/core/frame/Screen.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 64 matching lines...) Expand 10 before | Expand all | Expand 10 after
75 #include "core/page/EventHandler.h" 75 #include "core/page/EventHandler.h"
76 #include "core/page/FrameTree.h" 76 #include "core/page/FrameTree.h"
77 #include "core/frame/FrameView.h" 77 #include "core/frame/FrameView.h"
78 #include "core/page/Page.h" 78 #include "core/page/Page.h"
79 #include "core/page/PageConsole.h" 79 #include "core/page/PageConsole.h"
80 #include "core/page/PageGroup.h" 80 #include "core/page/PageGroup.h"
81 #include "core/page/Settings.h" 81 #include "core/page/Settings.h"
82 #include "core/page/WindowFeatures.h" 82 #include "core/page/WindowFeatures.h"
83 #include "core/page/WindowFocusAllowedIndicator.h" 83 #include "core/page/WindowFocusAllowedIndicator.h"
84 #include "core/page/scrolling/ScrollingCoordinator.h" 84 #include "core/page/scrolling/ScrollingCoordinator.h"
85 #include "core/platform/PlatformScreen.h"
86 #include "core/platform/graphics/MediaPlayer.h" 85 #include "core/platform/graphics/MediaPlayer.h"
87 #include "core/storage/Storage.h" 86 #include "core/storage/Storage.h"
88 #include "core/storage/StorageArea.h" 87 #include "core/storage/StorageArea.h"
89 #include "core/storage/StorageNamespace.h" 88 #include "core/storage/StorageNamespace.h"
90 #include "core/timing/Performance.h" 89 #include "core/timing/Performance.h"
91 #include "modules/device_orientation/NewDeviceOrientationController.h" 90 #include "modules/device_orientation/NewDeviceOrientationController.h"
91 #include "platform/PlatformScreen.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"
101 101
(...skipping 1664 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/css/MediaQueryEvaluator.cpp ('k') | Source/core/frame/Screen.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698