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

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

Issue 48273013: Move MediaPlayer, IntSizeHash to platform/ (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Adapt patch to already moved ContentDecryption files Created 7 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
« no previous file with comments | « Source/core/fetch/ImageResource.h ('k') | Source/core/html/HTMLMediaElement.h » ('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 71 matching lines...) Expand 10 before | Expand all | Expand 10 after
82 #include "core/page/EventHandler.h" 82 #include "core/page/EventHandler.h"
83 #include "core/page/FrameTree.h" 83 #include "core/page/FrameTree.h"
84 #include "core/frame/FrameView.h" 84 #include "core/frame/FrameView.h"
85 #include "core/page/Page.h" 85 #include "core/page/Page.h"
86 #include "core/page/PageConsole.h" 86 #include "core/page/PageConsole.h"
87 #include "core/page/PageGroup.h" 87 #include "core/page/PageGroup.h"
88 #include "core/page/Settings.h" 88 #include "core/page/Settings.h"
89 #include "core/page/WindowFeatures.h" 89 #include "core/page/WindowFeatures.h"
90 #include "core/page/WindowFocusAllowedIndicator.h" 90 #include "core/page/WindowFocusAllowedIndicator.h"
91 #include "core/page/scrolling/ScrollingCoordinator.h" 91 #include "core/page/scrolling/ScrollingCoordinator.h"
92 #include "core/platform/graphics/MediaPlayer.h"
93 #include "core/storage/Storage.h" 92 #include "core/storage/Storage.h"
94 #include "core/storage/StorageArea.h" 93 #include "core/storage/StorageArea.h"
95 #include "core/storage/StorageNamespace.h" 94 #include "core/storage/StorageNamespace.h"
96 #include "core/timing/Performance.h" 95 #include "core/timing/Performance.h"
97 #include "modules/device_orientation/NewDeviceOrientationController.h" 96 #include "modules/device_orientation/NewDeviceOrientationController.h"
98 #include "platform/PlatformScreen.h" 97 #include "platform/PlatformScreen.h"
99 #include "platform/UserGestureIndicator.h" 98 #include "platform/UserGestureIndicator.h"
100 #include "platform/geometry/FloatRect.h" 99 #include "platform/geometry/FloatRect.h"
100 #include "platform/graphics/media/MediaPlayer.h"
101 #include "public/platform/Platform.h" 101 #include "public/platform/Platform.h"
102 #include "weborigin/KURL.h" 102 #include "weborigin/KURL.h"
103 #include "weborigin/SecurityOrigin.h" 103 #include "weborigin/SecurityOrigin.h"
104 #include "weborigin/SecurityPolicy.h" 104 #include "weborigin/SecurityPolicy.h"
105 #include "wtf/MainThread.h" 105 #include "wtf/MainThread.h"
106 #include "wtf/MathExtras.h" 106 #include "wtf/MathExtras.h"
107 #include "wtf/text/WTFString.h" 107 #include "wtf/text/WTFString.h"
108 108
109 using std::min; 109 using std::min;
110 using std::max; 110 using std::max;
(...skipping 1756 matching lines...) Expand 10 before | Expand all | Expand 10 after
1867 return static_cast<DOMWindowLifecycleNotifier&>(LifecycleContext::lifecycleN otifier()); 1867 return static_cast<DOMWindowLifecycleNotifier&>(LifecycleContext::lifecycleN otifier());
1868 } 1868 }
1869 1869
1870 PassOwnPtr<LifecycleNotifier<DOMWindow> > DOMWindow::createLifecycleNotifier() 1870 PassOwnPtr<LifecycleNotifier<DOMWindow> > DOMWindow::createLifecycleNotifier()
1871 { 1871 {
1872 return DOMWindowLifecycleNotifier::create(this); 1872 return DOMWindowLifecycleNotifier::create(this);
1873 } 1873 }
1874 1874
1875 1875
1876 } // namespace WebCore 1876 } // namespace WebCore
OLDNEW
« no previous file with comments | « Source/core/fetch/ImageResource.h ('k') | Source/core/html/HTMLMediaElement.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698