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

Side by Side Diff: sky/engine/core/frame/LocalDOMWindow.cpp

Issue 689373003: Remove most of the media stack. (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 6 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 | « sky/engine/core/events/EventTypeNames.in ('k') | sky/engine/core/frame/UseCounter.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 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
73 #include "core/page/ChromeClient.h" 73 #include "core/page/ChromeClient.h"
74 #include "core/page/EventHandler.h" 74 #include "core/page/EventHandler.h"
75 #include "core/page/Page.h" 75 #include "core/page/Page.h"
76 #include "core/page/WindowFocusAllowedIndicator.h" 76 #include "core/page/WindowFocusAllowedIndicator.h"
77 #include "core/rendering/style/RenderStyle.h" 77 #include "core/rendering/style/RenderStyle.h"
78 #include "platform/EventDispatchForbiddenScope.h" 78 #include "platform/EventDispatchForbiddenScope.h"
79 #include "platform/PlatformScreen.h" 79 #include "platform/PlatformScreen.h"
80 #include "platform/RuntimeEnabledFeatures.h" 80 #include "platform/RuntimeEnabledFeatures.h"
81 #include "platform/UserGestureIndicator.h" 81 #include "platform/UserGestureIndicator.h"
82 #include "platform/geometry/FloatRect.h" 82 #include "platform/geometry/FloatRect.h"
83 #include "platform/graphics/media/MediaPlayer.h"
84 #include "platform/weborigin/KURL.h" 83 #include "platform/weborigin/KURL.h"
85 #include "platform/weborigin/SecurityPolicy.h" 84 #include "platform/weborigin/SecurityPolicy.h"
86 #include "public/platform/Platform.h" 85 #include "public/platform/Platform.h"
87 #include "wtf/MainThread.h" 86 #include "wtf/MainThread.h"
88 #include "wtf/MathExtras.h" 87 #include "wtf/MathExtras.h"
89 #include "wtf/text/WTFString.h" 88 #include "wtf/text/WTFString.h"
90 #include <algorithm> 89 #include <algorithm>
91 90
92 using std::min; 91 using std::min;
93 using std::max; 92 using std::max;
(...skipping 716 matching lines...) Expand 10 before | Expand all | Expand 10 after
810 { 809 {
811 return static_cast<DOMWindowLifecycleNotifier&>(LifecycleContext<LocalDOMWin dow>::lifecycleNotifier()); 810 return static_cast<DOMWindowLifecycleNotifier&>(LifecycleContext<LocalDOMWin dow>::lifecycleNotifier());
812 } 811 }
813 812
814 PassOwnPtr<LifecycleNotifier<LocalDOMWindow> > LocalDOMWindow::createLifecycleNo tifier() 813 PassOwnPtr<LifecycleNotifier<LocalDOMWindow> > LocalDOMWindow::createLifecycleNo tifier()
815 { 814 {
816 return DOMWindowLifecycleNotifier::create(this); 815 return DOMWindowLifecycleNotifier::create(this);
817 } 816 }
818 817
819 } // namespace blink 818 } // namespace blink
OLDNEW
« no previous file with comments | « sky/engine/core/events/EventTypeNames.in ('k') | sky/engine/core/frame/UseCounter.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698