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

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: Stale refernence to weboriginexport in .gpyi 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
« no previous file with comments | « Source/core/frame/ContentSecurityPolicy.cpp ('k') | Source/core/frame/History.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 79 matching lines...) Expand 10 before | Expand all | Expand 10 after
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/storage/Storage.h" 92 #include "core/storage/Storage.h"
93 #include "core/storage/StorageArea.h" 93 #include "core/storage/StorageArea.h"
94 #include "core/storage/StorageNamespace.h" 94 #include "core/storage/StorageNamespace.h"
95 #include "core/timing/Performance.h" 95 #include "core/timing/Performance.h"
96 #include "platform/PlatformScreen.h" 96 #include "platform/PlatformScreen.h"
97 #include "platform/UserGestureIndicator.h" 97 #include "platform/UserGestureIndicator.h"
98 #include "platform/geometry/FloatRect.h" 98 #include "platform/geometry/FloatRect.h"
99 #include "platform/graphics/media/MediaPlayer.h" 99 #include "platform/graphics/media/MediaPlayer.h"
100 #include "platform/weborigin/KURL.h"
101 #include "platform/weborigin/SecurityOrigin.h"
102 #include "platform/weborigin/SecurityPolicy.h"
100 #include "public/platform/Platform.h" 103 #include "public/platform/Platform.h"
101 #include "weborigin/KURL.h"
102 #include "weborigin/SecurityOrigin.h"
103 #include "weborigin/SecurityPolicy.h"
104 #include "wtf/MainThread.h" 104 #include "wtf/MainThread.h"
105 #include "wtf/MathExtras.h" 105 #include "wtf/MathExtras.h"
106 #include "wtf/text/WTFString.h" 106 #include "wtf/text/WTFString.h"
107 107
108 using std::min; 108 using std::min;
109 using std::max; 109 using std::max;
110 110
111 namespace WebCore { 111 namespace WebCore {
112 112
113 class PostMessageTimer : public TimerBase { 113 class PostMessageTimer : public TimerBase {
(...skipping 1754 matching lines...) Expand 10 before | Expand all | Expand 10 after
1868 return static_cast<DOMWindowLifecycleNotifier&>(LifecycleContext::lifecycleN otifier()); 1868 return static_cast<DOMWindowLifecycleNotifier&>(LifecycleContext::lifecycleN otifier());
1869 } 1869 }
1870 1870
1871 PassOwnPtr<LifecycleNotifier<DOMWindow> > DOMWindow::createLifecycleNotifier() 1871 PassOwnPtr<LifecycleNotifier<DOMWindow> > DOMWindow::createLifecycleNotifier()
1872 { 1872 {
1873 return DOMWindowLifecycleNotifier::create(this); 1873 return DOMWindowLifecycleNotifier::create(this);
1874 } 1874 }
1875 1875
1876 1876
1877 } // namespace WebCore 1877 } // namespace WebCore
OLDNEW
« no previous file with comments | « Source/core/frame/ContentSecurityPolicy.cpp ('k') | Source/core/frame/History.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698