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

Side by Side Diff: third_party/WebKit/Source/core/inspector/AsyncOperationMap.h

Issue 1367623006: DevTools: extract V8DebuggerAgent interface, move it under .../inspector/v8 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 2 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 AsyncOperationMap_h 5 #ifndef AsyncOperationMap_h
6 #define AsyncOperationMap_h 6 #define AsyncOperationMap_h
7 7
8 #include "core/inspector/V8DebuggerAgent.h" 8 #include "core/inspector/v8/V8DebuggerAgent.h"
9 #include "platform/heap/Handle.h" 9 #include "platform/heap/Handle.h"
10 #include "wtf/HashMap.h" 10 #include "wtf/HashMap.h"
11 #include "wtf/PassRefPtr.h" 11 #include "wtf/PassRefPtr.h"
12 #include "wtf/RefPtr.h" 12 #include "wtf/RefPtr.h"
13 13
14 namespace blink { 14 namespace blink {
15 15
16 template <class K> 16 template <class K>
17 class AsyncOperationMap final { 17 class AsyncOperationMap final {
18 ALLOW_ONLY_INLINE_ALLOCATION(); 18 ALLOW_ONLY_INLINE_ALLOCATION();
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
81 81
82 private: 82 private:
83 RawPtrWillBeMember<V8DebuggerAgent> m_debuggerAgent; 83 RawPtrWillBeMember<V8DebuggerAgent> m_debuggerAgent;
84 MapType m_asyncOperations; 84 MapType m_asyncOperations;
85 }; 85 };
86 86
87 } // namespace blink 87 } // namespace blink
88 88
89 89
90 #endif // AsyncOperationMap_h 90 #endif // AsyncOperationMap_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698