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

Side by Side Diff: third_party/WebKit/Source/bindings/core/v8/DictionaryIterator.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 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 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 DictionaryIterator_h 5 #ifndef DictionaryIterator_h
6 #define DictionaryIterator_h 6 #define DictionaryIterator_h
7 7
8 #include <v8.h>
8 #include "core/CoreExport.h" 9 #include "core/CoreExport.h"
9 #include "wtf/Allocator.h" 10 #include "wtf/Allocator.h"
10 #include <v8.h>
11 11
12 namespace WTF { 12 namespace WTF {
13 13
14 class String; 14 class String;
15 15
16 } // namespace WTF 16 } // namespace WTF
17 17
18 namespace blink { 18 namespace blink {
19 19
20 class Dictionary; 20 class Dictionary;
(...skipping 23 matching lines...) Expand all
44 v8::Local<v8::String> m_nextKey; 44 v8::Local<v8::String> m_nextKey;
45 v8::Local<v8::String> m_doneKey; 45 v8::Local<v8::String> m_doneKey;
46 v8::Local<v8::String> m_valueKey; 46 v8::Local<v8::String> m_valueKey;
47 bool m_done; 47 bool m_done;
48 v8::MaybeLocal<v8::Value> m_value; 48 v8::MaybeLocal<v8::Value> m_value;
49 }; 49 };
50 50
51 } // namespace blink 51 } // namespace blink
52 52
53 #endif // DictionaryIterator_h 53 #endif // DictionaryIterator_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698