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

Side by Side Diff: content/public/common/content_descriptor_keys.h

Issue 2841443005: [Bindings] Create and use V8 context snapshots (Closed)
Patch Set: . Created 3 years, 7 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 2017 The Chromium Authors. All rights reserved. 1 // Copyright 2017 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 CONTENT_PUBLIC_COMMON_CONTENT_DESCRIPTOR_KEYS_H_ 5 #ifndef CONTENT_PUBLIC_COMMON_CONTENT_DESCRIPTOR_KEYS_H_
6 #define CONTENT_PUBLIC_COMMON_CONTENT_DESCRIPTOR_KEYS_H_ 6 #define CONTENT_PUBLIC_COMMON_CONTENT_DESCRIPTOR_KEYS_H_
7 7
8 namespace content { 8 namespace content {
9 9
10 // This is a list of global descriptor keys to be used with the 10 // This is a list of global descriptor keys to be used with the
11 // base::FileDescriptorStore object (see base/file_descriptor_store.h) 11 // base::FileDescriptorStore object (see base/file_descriptor_store.h)
12 // 12 //
13 // Note that these keys are also used in 13 // Note that these keys are also used in
14 // content/public/app/mojo/content_renderer_manifest.json and should be kept in 14 // content/public/app/mojo/content_renderer_manifest.json and should be kept in
15 // sync. 15 // sync.
Yuki 2017/04/28 13:48:27 Don't we need to update content/public/app/mojo/co
peria 2017/06/01 08:33:31 Done.
16 16
17 extern const char kV8NativesDataDescriptor[]; 17 extern const char kV8NativesDataDescriptor[];
18 extern const char kV8SnapshotDataDescriptor[]; 18 extern const char kV8SnapshotDataDescriptor[];
19 extern const char kV8Snapshot32DataDescriptor[]; 19 extern const char kV8Snapshot32DataDescriptor[];
20 extern const char kV8Snapshot64DataDescriptor[]; 20 extern const char kV8Snapshot64DataDescriptor[];
21 extern const char kV8ContextDataDescriptor[];
21 22
22 } // namespace content 23 } // namespace content
23 24
24 #endif // CONTENT_PUBLIC_COMMON_CONTENT_DESCRIPTOR_KEYS_H_ 25 #endif // CONTENT_PUBLIC_COMMON_CONTENT_DESCRIPTOR_KEYS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698