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

Side by Side Diff: third_party/WebKit/Source/modules/webaudio/AudioWorkletProcessor.h

Issue 2848963002: Clean up bindings/core/v8 (Part 1) (Closed)
Patch Set: Fix build 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 2017 The Chromium Authors. All rights reserved. 1 // Copyright 2017 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 AudioWorkletProcessor_h 5 #ifndef AudioWorkletProcessor_h
6 #define AudioWorkletProcessor_h 6 #define AudioWorkletProcessor_h
7 7
8 #include "bindings/core/v8/ScopedPersistent.h"
9 #include "modules/ModulesExport.h" 8 #include "modules/ModulesExport.h"
9 #include "platform/bindings/ScopedPersistent.h"
10 #include "platform/heap/Handle.h" 10 #include "platform/heap/Handle.h"
11 #include "platform/wtf/text/WTFString.h" 11 #include "platform/wtf/text/WTFString.h"
12 #include "v8/include/v8.h" 12 #include "v8/include/v8.h"
13 13
14 namespace blink { 14 namespace blink {
15 15
16 class AudioBuffer; 16 class AudioBuffer;
17 class AudioWorkletGlobalScope; 17 class AudioWorkletGlobalScope;
18 class AudioWorkletProcessorDefinition; 18 class AudioWorkletProcessorDefinition;
19 19
(...skipping 25 matching lines...) Expand all
45 AudioWorkletProcessor(AudioWorkletGlobalScope*, const String& name); 45 AudioWorkletProcessor(AudioWorkletGlobalScope*, const String& name);
46 46
47 Member<AudioWorkletGlobalScope> global_scope_; 47 Member<AudioWorkletGlobalScope> global_scope_;
48 const String name_; 48 const String name_;
49 ScopedPersistent<v8::Object> instance_; 49 ScopedPersistent<v8::Object> instance_;
50 }; 50 };
51 51
52 } // namespace blink 52 } // namespace blink
53 53
54 #endif // AudioWorkletProcessor_h 54 #endif // AudioWorkletProcessor_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698