OLD | NEW |
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. |
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 kV8ContextSnapshotDataDescriptor[]; |
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_ |
OLD | NEW |