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

Side by Side Diff: Source/core/html/HTMLMediaElement.cpp

Issue 99103006: Moving GraphicsContext and dependencies from core to platform. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Final patch - fixes Android Created 7 years 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) 2007, 2008, 2009, 2010, 2011, 2012, 2013 Apple Inc. All rights reserved. 2 * Copyright (C) 2007, 2008, 2009, 2010, 2011, 2012, 2013 Apple Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions 5 * modification, are permitted provided that the following conditions
6 * are met: 6 * are met:
7 * 1. Redistributions of source code must retain the above copyright 7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer. 8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright 9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the 10 * notice, this list of conditions and the following disclaimer in the
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
52 #include "core/html/TimeRanges.h" 52 #include "core/html/TimeRanges.h"
53 #include "core/html/shadow/MediaControls.h" 53 #include "core/html/shadow/MediaControls.h"
54 #include "core/html/track/InbandTextTrack.h" 54 #include "core/html/track/InbandTextTrack.h"
55 #include "core/html/track/TextTrackCueList.h" 55 #include "core/html/track/TextTrackCueList.h"
56 #include "core/html/track/TextTrackList.h" 56 #include "core/html/track/TextTrackList.h"
57 #include "core/loader/FrameLoader.h" 57 #include "core/loader/FrameLoader.h"
58 #include "core/frame/ContentSecurityPolicy.h" 58 #include "core/frame/ContentSecurityPolicy.h"
59 #include "core/frame/Frame.h" 59 #include "core/frame/Frame.h"
60 #include "core/page/Page.h" 60 #include "core/page/Page.h"
61 #include "core/page/Settings.h" 61 #include "core/page/Settings.h"
62 #include "core/platform/graphics/GraphicsLayer.h"
63 #include "core/rendering/RenderLayerCompositor.h" 62 #include "core/rendering/RenderLayerCompositor.h"
64 #include "core/rendering/RenderVideo.h" 63 #include "core/rendering/RenderVideo.h"
65 #include "core/rendering/RenderView.h" 64 #include "core/rendering/RenderView.h"
66 #include "modules/mediastream/MediaStreamRegistry.h" 65 #include "modules/mediastream/MediaStreamRegistry.h"
67 #include "platform/ContentType.h" 66 #include "platform/ContentType.h"
68 #include "platform/Language.h" 67 #include "platform/Language.h"
69 #include "platform/Logging.h" 68 #include "platform/Logging.h"
70 #include "platform/MIMETypeFromURL.h" 69 #include "platform/MIMETypeFromURL.h"
71 #include "platform/MIMETypeRegistry.h" 70 #include "platform/MIMETypeRegistry.h"
72 #include "platform/NotImplemented.h" 71 #include "platform/NotImplemented.h"
73 #include "platform/UserGestureIndicator.h" 72 #include "platform/UserGestureIndicator.h"
73 #include "platform/graphics/GraphicsLayer.h"
74 #include "platform/weborigin/SecurityOrigin.h" 74 #include "platform/weborigin/SecurityOrigin.h"
75 #include "public/platform/Platform.h" 75 #include "public/platform/Platform.h"
76 #include "public/platform/WebInbandTextTrack.h" 76 #include "public/platform/WebInbandTextTrack.h"
77 #include "wtf/CurrentTime.h" 77 #include "wtf/CurrentTime.h"
78 #include "wtf/MathExtras.h" 78 #include "wtf/MathExtras.h"
79 #include "wtf/NonCopyingSort.h" 79 #include "wtf/NonCopyingSort.h"
80 #include "wtf/Uint8Array.h" 80 #include "wtf/Uint8Array.h"
81 #include "wtf/text/CString.h" 81 #include "wtf/text/CString.h"
82 82
83 #if ENABLE(WEB_AUDIO) 83 #if ENABLE(WEB_AUDIO)
(...skipping 3828 matching lines...) Expand 10 before | Expand all | Expand 10 after
3912 if (m_webLayer) 3912 if (m_webLayer)
3913 m_webLayer->setOpaque(m_opaque); 3913 m_webLayer->setOpaque(m_opaque);
3914 } 3914 }
3915 3915
3916 bool HTMLMediaElement::isInteractiveContent() const 3916 bool HTMLMediaElement::isInteractiveContent() const
3917 { 3917 {
3918 return fastHasAttribute(controlsAttr); 3918 return fastHasAttribute(controlsAttr);
3919 } 3919 }
3920 3920
3921 } 3921 }
OLDNEW
« no previous file with comments | « Source/core/html/HTMLCanvasElement.cpp ('k') | Source/core/html/canvas/ANGLEInstancedArrays.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698