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

Side by Side Diff: third_party/WebKit/Source/modules/encryptedmedia/MediaKeySystemAccess.cpp

Issue 1921623002: Remove unnecessary ExceptionCode.h inclusion (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 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 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "modules/encryptedmedia/MediaKeySystemAccess.h" 5 #include "modules/encryptedmedia/MediaKeySystemAccess.h"
6 6
7 #include "bindings/core/v8/ScriptPromiseResolver.h" 7 #include "bindings/core/v8/ScriptPromiseResolver.h"
8 #include "bindings/core/v8/ScriptState.h" 8 #include "bindings/core/v8/ScriptState.h"
9 #include "core/dom/DOMException.h" 9 #include "core/dom/DOMException.h"
10 #include "core/dom/Document.h" 10 #include "core/dom/Document.h"
11 #include "core/dom/ExceptionCode.h"
12 #include "modules/encryptedmedia/ContentDecryptionModuleResultPromise.h" 11 #include "modules/encryptedmedia/ContentDecryptionModuleResultPromise.h"
13 #include "modules/encryptedmedia/EncryptedMediaUtils.h" 12 #include "modules/encryptedmedia/EncryptedMediaUtils.h"
14 #include "modules/encryptedmedia/MediaKeySession.h" 13 #include "modules/encryptedmedia/MediaKeySession.h"
15 #include "modules/encryptedmedia/MediaKeys.h" 14 #include "modules/encryptedmedia/MediaKeys.h"
16 #include "modules/encryptedmedia/MediaKeysController.h" 15 #include "modules/encryptedmedia/MediaKeysController.h"
17 #include "platform/Logging.h" 16 #include "platform/Logging.h"
18 #include "platform/Timer.h" 17 #include "platform/Timer.h"
19 #include "public/platform/WebContentDecryptionModule.h" 18 #include "public/platform/WebContentDecryptionModule.h"
20 #include "public/platform/WebEncryptedMediaTypes.h" 19 #include "public/platform/WebEncryptedMediaTypes.h"
21 #include "public/platform/WebMediaKeySystemConfiguration.h" 20 #include "public/platform/WebMediaKeySystemConfiguration.h"
(...skipping 140 matching lines...) Expand 10 before | Expand all | Expand 10 after
162 161
163 // 3. Return promise. 162 // 3. Return promise.
164 return promise; 163 return promise;
165 } 164 }
166 165
167 DEFINE_TRACE(MediaKeySystemAccess) 166 DEFINE_TRACE(MediaKeySystemAccess)
168 { 167 {
169 } 168 }
170 169
171 } // namespace blink 170 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698