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

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

Issue 642383002: Only include NotImplemented.h when it is actually used (when notImplemented() is called). (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 2 months 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
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 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
59 #include "core/html/track/VideoTrackList.h" 59 #include "core/html/track/VideoTrackList.h"
60 #include "core/loader/FrameLoader.h" 60 #include "core/loader/FrameLoader.h"
61 #include "core/rendering/RenderVideo.h" 61 #include "core/rendering/RenderVideo.h"
62 #include "core/rendering/RenderView.h" 62 #include "core/rendering/RenderView.h"
63 #include "core/rendering/compositing/RenderLayerCompositor.h" 63 #include "core/rendering/compositing/RenderLayerCompositor.h"
64 #include "platform/ContentType.h" 64 #include "platform/ContentType.h"
65 #include "platform/Language.h" 65 #include "platform/Language.h"
66 #include "platform/Logging.h" 66 #include "platform/Logging.h"
67 #include "platform/MIMETypeFromURL.h" 67 #include "platform/MIMETypeFromURL.h"
68 #include "platform/MIMETypeRegistry.h" 68 #include "platform/MIMETypeRegistry.h"
69 #include "platform/NotImplemented.h"
70 #include "platform/RuntimeEnabledFeatures.h" 69 #include "platform/RuntimeEnabledFeatures.h"
71 #include "platform/UserGestureIndicator.h" 70 #include "platform/UserGestureIndicator.h"
72 #include "platform/graphics/GraphicsLayer.h" 71 #include "platform/graphics/GraphicsLayer.h"
73 #include "platform/weborigin/SecurityOrigin.h" 72 #include "platform/weborigin/SecurityOrigin.h"
74 #include "public/platform/Platform.h" 73 #include "public/platform/Platform.h"
75 #include "public/platform/WebContentDecryptionModule.h" 74 #include "public/platform/WebContentDecryptionModule.h"
76 #include "public/platform/WebInbandTextTrack.h" 75 #include "public/platform/WebInbandTextTrack.h"
77 #include "wtf/CurrentTime.h" 76 #include "wtf/CurrentTime.h"
78 #include "wtf/MathExtras.h" 77 #include "wtf/MathExtras.h"
79 #include "wtf/NonCopyingSort.h" 78 #include "wtf/NonCopyingSort.h"
(...skipping 3950 matching lines...) Expand 10 before | Expand all | Expand 10 after
4030 4029
4031 #if ENABLE(WEB_AUDIO) 4030 #if ENABLE(WEB_AUDIO)
4032 void HTMLMediaElement::clearWeakMembers(Visitor* visitor) 4031 void HTMLMediaElement::clearWeakMembers(Visitor* visitor)
4033 { 4032 {
4034 if (!visitor->isAlive(m_audioSourceNode) && audioSourceProvider()) 4033 if (!visitor->isAlive(m_audioSourceNode) && audioSourceProvider())
4035 audioSourceProvider()->setClient(0); 4034 audioSourceProvider()->setClient(0);
4036 } 4035 }
4037 #endif 4036 #endif
4038 4037
4039 } 4038 }
OLDNEW
« no previous file with comments | « Source/core/frame/csp/ContentSecurityPolicy.cpp ('k') | Source/core/html/canvas/WebGLRenderingContext.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698