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

Side by Side Diff: third_party/WebKit/Source/modules/encryptedmedia/MediaKeyStatusMap.h

Issue 2848243004: Clean up bindings/core/v8 (Part 2) (Closed)
Patch Set: Rebase Created 3 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 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 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 #ifndef MediaKeyStatusMap_h 5 #ifndef MediaKeyStatusMap_h
6 #define MediaKeyStatusMap_h 6 #define MediaKeyStatusMap_h
7 7
8 #include "bindings/core/v8/Iterable.h" 8 #include "bindings/core/v8/Iterable.h"
9 #include "bindings/core/v8/ScriptValue.h" 9 #include "bindings/core/v8/ScriptValue.h"
10 #include "bindings/core/v8/ScriptWrappable.h"
11 #include "core/dom/DOMArrayPiece.h" 10 #include "core/dom/DOMArrayPiece.h"
11 #include "platform/bindings/ScriptWrappable.h"
12 #include "platform/heap/Heap.h" 12 #include "platform/heap/Heap.h"
13 13
14 namespace blink { 14 namespace blink {
15 15
16 class ExceptionState; 16 class ExceptionState;
17 class ScriptState; 17 class ScriptState;
18 class WebData; 18 class WebData;
19 19
20 // Represents a read-only map (to JavaScript) of key IDs and their current 20 // Represents a read-only map (to JavaScript) of key IDs and their current
21 // status known to a particular session. Since it can be updated any time there 21 // status known to a particular session. Since it can be updated any time there
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
55 IterationSource* StartIteration(ScriptState*, ExceptionState&) override; 55 IterationSource* StartIteration(ScriptState*, ExceptionState&) override;
56 56
57 size_t IndexOf(const DOMArrayPiece& key_id) const; 57 size_t IndexOf(const DOMArrayPiece& key_id) const;
58 58
59 MediaKeyStatusMapType entries_; 59 MediaKeyStatusMapType entries_;
60 }; 60 };
61 61
62 } // namespace blink 62 } // namespace blink
63 63
64 #endif // MediaKeyStatusMap_h 64 #endif // MediaKeyStatusMap_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698