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

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

Issue 55143009: Move MIMEType classes to Source/platform (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebase against ToT 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
« no previous file with comments | « Source/core/html/HTMLCanvasElement.cpp ('k') | Source/core/html/HTMLObjectElement.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) 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/MIMETypeFromURL.h"
63 #include "core/platform/MIMETypeRegistry.h"
64 #include "core/rendering/RenderLayerCompositor.h" 62 #include "core/rendering/RenderLayerCompositor.h"
65 #include "core/rendering/RenderVideo.h" 63 #include "core/rendering/RenderVideo.h"
66 #include "core/rendering/RenderView.h" 64 #include "core/rendering/RenderView.h"
67 #include "modules/mediastream/MediaStreamRegistry.h" 65 #include "modules/mediastream/MediaStreamRegistry.h"
68 #include "platform/ContentType.h" 66 #include "platform/ContentType.h"
69 #include "platform/Language.h" 67 #include "platform/Language.h"
70 #include "platform/Logging.h" 68 #include "platform/Logging.h"
69 #include "platform/MIMETypeFromURL.h"
70 #include "platform/MIMETypeRegistry.h"
71 #include "platform/NotImplemented.h" 71 #include "platform/NotImplemented.h"
72 #include "platform/UserGestureIndicator.h" 72 #include "platform/UserGestureIndicator.h"
73 #include "platform/graphics/media/InbandTextTrackPrivate.h" 73 #include "platform/graphics/media/InbandTextTrackPrivate.h"
74 #include "platform/graphics/media/MediaPlayer.h" 74 #include "platform/graphics/media/MediaPlayer.h"
75 #include "public/platform/Platform.h" 75 #include "public/platform/Platform.h"
76 #include "weborigin/SecurityOrigin.h" 76 #include "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"
(...skipping 3787 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
« no previous file with comments | « Source/core/html/HTMLCanvasElement.cpp ('k') | Source/core/html/HTMLObjectElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698