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

Side by Side Diff: Source/core/html/HTMLMediaElement.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) 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 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
66 #include "core/rendering/RenderLayerCompositor.h" 66 #include "core/rendering/RenderLayerCompositor.h"
67 #include "core/rendering/RenderVideo.h" 67 #include "core/rendering/RenderVideo.h"
68 #include "core/rendering/RenderView.h" 68 #include "core/rendering/RenderView.h"
69 #include "modules/mediastream/MediaStreamRegistry.h" 69 #include "modules/mediastream/MediaStreamRegistry.h"
70 #include "platform/ContentType.h" 70 #include "platform/ContentType.h"
71 #include "platform/Language.h" 71 #include "platform/Language.h"
72 #include "platform/Logging.h" 72 #include "platform/Logging.h"
73 #include "platform/NotImplemented.h" 73 #include "platform/NotImplemented.h"
74 #include "platform/UserGestureIndicator.h" 74 #include "platform/UserGestureIndicator.h"
75 #include "public/platform/Platform.h" 75 #include "public/platform/Platform.h"
76 #include "weborigin/SecurityOrigin.h" 76 #include "platform/weborigin/SecurityOrigin.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)
84 #include "platform/audio/AudioSourceProvider.h" 84 #include "platform/audio/AudioSourceProvider.h"
85 #include "modules/webaudio/MediaElementAudioSourceNode.h" 85 #include "modules/webaudio/MediaElementAudioSourceNode.h"
86 #endif 86 #endif
(...skipping 3781 matching lines...) Expand 10 before | Expand all | Expand 10 after
3868 { 3868 {
3869 scheduleLayerUpdate(); 3869 scheduleLayerUpdate();
3870 } 3870 }
3871 3871
3872 bool HTMLMediaElement::isInteractiveContent() const 3872 bool HTMLMediaElement::isInteractiveContent() const
3873 { 3873 {
3874 return fastHasAttribute(controlsAttr); 3874 return fastHasAttribute(controlsAttr);
3875 } 3875 }
3876 3876
3877 } 3877 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698