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

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

Issue 54053006: Move weborigin/ under platform/ so that it may someday call platform APIs (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: 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 | Annotate | Revision Log
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 81 matching lines...) Expand 10 before | Expand all | Expand 10 after
92 #include "core/platform/graphics/MediaPlayer.h" 92 #include "core/platform/graphics/MediaPlayer.h"
93 #include "core/storage/Storage.h" 93 #include "core/storage/Storage.h"
94 #include "core/storage/StorageArea.h" 94 #include "core/storage/StorageArea.h"
95 #include "core/storage/StorageNamespace.h" 95 #include "core/storage/StorageNamespace.h"
96 #include "core/timing/Performance.h" 96 #include "core/timing/Performance.h"
97 #include "modules/device_orientation/NewDeviceOrientationController.h" 97 #include "modules/device_orientation/NewDeviceOrientationController.h"
98 #include "platform/PlatformScreen.h" 98 #include "platform/PlatformScreen.h"
99 #include "platform/UserGestureIndicator.h" 99 #include "platform/UserGestureIndicator.h"
100 #include "platform/geometry/FloatRect.h" 100 #include "platform/geometry/FloatRect.h"
101 #include "public/platform/Platform.h" 101 #include "public/platform/Platform.h"
102 #include "weborigin/KURL.h" 102 #include "platform/weborigin/KURL.h"
103 #include "weborigin/SecurityOrigin.h" 103 #include "platform/weborigin/SecurityOrigin.h"
104 #include "weborigin/SecurityPolicy.h" 104 #include "platform/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;
111 111
112 namespace WebCore { 112 namespace WebCore {
113 113
114 class PostMessageTimer : public TimerBase { 114 class PostMessageTimer : public TimerBase {
(...skipping 1752 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

Powered by Google App Engine
This is Rietveld 408576698