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

Side by Side Diff: third_party/WebKit/Source/core/testing/DictionaryTest.h

Issue 2818083002: Rewrite references to "wtf/" to "platform/wtf/" in the rest of core/. (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 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 DictionaryTest_h 5 #ifndef DictionaryTest_h
6 #define DictionaryTest_h 6 #define DictionaryTest_h
7 7
8 #include "bindings/core/v8/DoubleOrString.h" 8 #include "bindings/core/v8/DoubleOrString.h"
9 #include "bindings/core/v8/Nullable.h" 9 #include "bindings/core/v8/Nullable.h"
10 #include "bindings/core/v8/ScriptValue.h" 10 #include "bindings/core/v8/ScriptValue.h"
11 #include "bindings/core/v8/ScriptWrappable.h" 11 #include "bindings/core/v8/ScriptWrappable.h"
12 #include "core/dom/Element.h" 12 #include "core/dom/Element.h"
13 #include "platform/heap/Handle.h" 13 #include "platform/heap/Handle.h"
14 #include "wtf/HashMap.h" 14 #include "platform/wtf/HashMap.h"
15 #include "wtf/text/WTFString.h" 15 #include "platform/wtf/text/WTFString.h"
16 16
17 namespace blink { 17 namespace blink {
18 18
19 class InternalDictionary; 19 class InternalDictionary;
20 class InternalDictionaryDerived; 20 class InternalDictionaryDerived;
21 class InternalDictionaryDerivedDerived; 21 class InternalDictionaryDerivedDerived;
22 class ScriptState; 22 class ScriptState;
23 23
24 class DictionaryTest : public GarbageCollectedFinalized<DictionaryTest>, 24 class DictionaryTest : public GarbageCollectedFinalized<DictionaryTest>,
25 public ScriptWrappable { 25 public ScriptWrappable {
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after
90 String derived_string_member_with_default_; 90 String derived_string_member_with_default_;
91 String derived_derived_string_member_; 91 String derived_derived_string_member_;
92 bool required_boolean_member_; 92 bool required_boolean_member_;
93 Nullable<HashMap<String, String>> dictionary_member_properties_; 93 Nullable<HashMap<String, String>> dictionary_member_properties_;
94 ScriptValue prefix_get_member_; 94 ScriptValue prefix_get_member_;
95 }; 95 };
96 96
97 } // namespace blink 97 } // namespace blink
98 98
99 #endif // DictionaryTest_h 99 #endif // DictionaryTest_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698