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

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

Issue 1805843002: [v8 gc] Introduce a base class for all objects that can have pending activity (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: updates Created 4 years, 9 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
(Empty)
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
3 // found in the LICENSE file.
4
5 #ifndef V8GCRoot_h
6 #define V8GCRoot_h
7
8 #include "core/CoreExport.h"
9 #include "wtf/Noncopyable.h"
10
11 namespace blink {
12
13 /**
14 * Classes deriving from V8GCRoot will be registered in a thread-specific
15 * list of GC roots. They keep their wrappers and dependant objects alive
16 * as long as they have pending activity.
17 */
18 class CORE_EXPORT V8GCRoot {
19 WTF_MAKE_NONCOPYABLE(V8GCRoot);
20 public:
21 V8GCRoot();
22
23 protected:
24 virtual ~V8GCRoot();
25 };
26
27 } // namespace blink
28
29 #endif // V8GCRoot_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698