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

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

Issue 1389383003: WIP: Introduce CompressibleString Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: haraken's review Created 5 years 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 /* 1 /*
2 * Copyright (C) 2009 Google Inc. All rights reserved. 2 * Copyright (C) 2009 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions 5 * modification, are permitted provided that the following conditions
6 * are met: 6 * are met:
7 * 1. Redistributions of source code must retain the above copyright 7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer. 8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright 9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the 10 * notice, this list of conditions and the following disclaimer in the
(...skipping 16 matching lines...) Expand all
27 #define V8PerIsolateData_h 27 #define V8PerIsolateData_h
28 28
29 #include "bindings/core/v8/ScopedPersistent.h" 29 #include "bindings/core/v8/ScopedPersistent.h"
30 #include "bindings/core/v8/ScriptState.h" 30 #include "bindings/core/v8/ScriptState.h"
31 #include "bindings/core/v8/V8HiddenValue.h" 31 #include "bindings/core/v8/V8HiddenValue.h"
32 #include "bindings/core/v8/WrapperTypeInfo.h" 32 #include "bindings/core/v8/WrapperTypeInfo.h"
33 #include "core/CoreExport.h" 33 #include "core/CoreExport.h"
34 #include "core/inspector/ScriptDebuggerBase.h" 34 #include "core/inspector/ScriptDebuggerBase.h"
35 #include "gin/public/isolate_holder.h" 35 #include "gin/public/isolate_holder.h"
36 #include "gin/public/v8_idle_task_runner.h" 36 #include "gin/public/v8_idle_task_runner.h"
37 #include "platform/text/CompressibleString.h"
hajimehoshi 2015/11/26 10:56:19 nit
37 #include "wtf/HashMap.h" 38 #include "wtf/HashMap.h"
38 #include "wtf/Noncopyable.h" 39 #include "wtf/Noncopyable.h"
39 #include "wtf/OwnPtr.h" 40 #include "wtf/OwnPtr.h"
40 #include "wtf/Vector.h" 41 #include "wtf/Vector.h"
41 #include <v8.h> 42 #include <v8.h>
42 43
43 namespace blink { 44 namespace blink {
44 45
45 class DOMDataStore; 46 class DOMDataStore;
46 class StringCache; 47 class StringCache;
(...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after
160 #endif 161 #endif
161 bool m_performingMicrotaskCheckpoint; 162 bool m_performingMicrotaskCheckpoint;
162 163
163 Vector<OwnPtr<EndOfScopeTask>> m_endOfScopeTasks; 164 Vector<OwnPtr<EndOfScopeTask>> m_endOfScopeTasks;
164 OwnPtr<ScriptDebuggerBase> m_scriptDebugger; 165 OwnPtr<ScriptDebuggerBase> m_scriptDebugger;
165 }; 166 };
166 167
167 } // namespace blink 168 } // namespace blink
168 169
169 #endif // V8PerIsolateData_h 170 #endif // V8PerIsolateData_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698