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

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

Issue 2700123003: DO NOT COMMIT: Results of running old (current) clang-format on Blink (Closed)
Patch Set: Created 3 years, 10 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 <v8.h>
8 #include "bindings/core/v8/ToV8.h" 9 #include "bindings/core/v8/ToV8.h"
9 #include "core/CoreExport.h" 10 #include "core/CoreExport.h"
10 #include "platform/heap/Handle.h" 11 #include "platform/heap/Handle.h"
11 #include "wtf/text/WTFString.h" 12 #include "wtf/text/WTFString.h"
12 #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
19 class CORE_EXPORT V8ObjectBuilder final { 19 class CORE_EXPORT V8ObjectBuilder final {
20 STACK_ALLOCATED(); 20 STACK_ALLOCATED();
21 21
22 public: 22 public:
(...skipping 24 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> m_scriptState; 50 RefPtr<ScriptState> m_scriptState;
51 v8::Local<v8::Object> m_object; 51 v8::Local<v8::Object> m_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