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

Side by Side Diff: third_party/WebKit/Source/bindings/core/v8/V8ObjectBuilder.h

Issue 2809243002: Split ToV8.h (Closed)
Patch Set: Rebase Created 3 years, 8 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 V8ObjectBuilder_h 5 #ifndef V8ObjectBuilder_h
6 #define V8ObjectBuilder_h 6 #define V8ObjectBuilder_h
7 7
8 #include "bindings/core/v8/ToV8.h" 8 #include "bindings/core/v8/ToV8ForCore.h"
9 #include "core/CoreExport.h" 9 #include "core/CoreExport.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 ScriptState; 16 class ScriptState;
17 class ScriptValue; 17 class ScriptValue;
18 18
(...skipping 28 matching lines...) Expand all
47 private: 47 private:
48 void AddInternal(const StringView& name, v8::Local<v8::Value>); 48 void AddInternal(const StringView& name, v8::Local<v8::Value>);
49 49
50 RefPtr<ScriptState> script_state_; 50 RefPtr<ScriptState> script_state_;
51 v8::Local<v8::Object> object_; 51 v8::Local<v8::Object> object_;
52 }; 52 };
53 53
54 } // namespace blink 54 } // namespace blink
55 55
56 #endif // V8ObjectBuilder_h 56 #endif // V8ObjectBuilder_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698