OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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_BINDINGS_POLICY_H_ | 5 #ifndef CONTENT_PUBLIC_COMMON_BINDINGS_POLICY_H_ |
6 #define CONTENT_PUBLIC_COMMON_BINDINGS_POLICY_H_ | 6 #define CONTENT_PUBLIC_COMMON_BINDINGS_POLICY_H_ |
7 | 7 |
8 namespace content { | 8 namespace content { |
9 | 9 |
10 // This enum specifies flag values for the types of JavaScript bindings exposed | 10 // This enum specifies flag values for the types of JavaScript bindings exposed |
11 // to renderers. | 11 // to renderers. |
12 enum BindingsPolicy { | 12 enum BindingsPolicy { |
13 // HTML-based UI bindings that allows the JS content to send JSON-encoded | 13 // HTML-based UI bindings that allows the JS content to send JSON-encoded |
14 // data back to the browser process. | 14 // data back to the browser process. |
15 BINDINGS_POLICY_WEB_UI = 1 << 0, | 15 BINDINGS_POLICY_WEB_UI = 1 << 0, |
16 // DOM automation bindings that allows the JS content to send JSON-encoded | 16 // DOM automation bindings that allows the JS content to send JSON-encoded |
17 // data back to automation in the parent process. (By default this isn't | 17 // data back to automation in the parent process. (By default this isn't |
18 // allowed unless the app has been started up with the --dom-automation | 18 // allowed unless the app has been started up with the --dom-automation |
19 // switch.) | 19 // switch.) |
20 BINDINGS_POLICY_DOM_AUTOMATION = 1 << 1, | 20 BINDINGS_POLICY_DOM_AUTOMATION = 1 << 1, |
21 // Bindings that allows the JS content to retrieve a variety of internal | 21 // Bindings that allows the JS content to retrieve a variety of internal |
22 // metrics. (By default this isn't allowed unless the app has been started up | 22 // metrics. (By default this isn't allowed unless the app has been started up |
23 // with the --enable-stats-collection-bindings switch.) | 23 // with the --enable-stats-collection-bindings switch.) |
24 BINDINGS_POLICY_STATS_COLLECTION = 1 << 2, | 24 BINDINGS_POLICY_STATS_COLLECTION = 1 << 2, |
| 25 // Bindings that allows the JS content to access Mojo system API and |
| 26 // ServiceRegistry modules. The system API modules are defined in |
| 27 // //mojo/public/js and provide the ability to create Mojo primitives such as |
| 28 // message and data pipes. The ServiceRegistry module (see |
| 29 // //content/renderer/mojo/service_registry_js_wrapper.h) in turn allows these |
| 30 // Mojo primitives to be used to connect to named services exposed either by |
| 31 // the browser or testing code. These bindings should not be exposed to |
| 32 // normal web contents and are intended only for use with WebUI and layout |
| 33 // tests. |
| 34 BINDINGS_POLICY_MOJO = 1 << 3, |
25 | 35 |
26 }; | 36 }; |
27 | 37 |
28 } | 38 } |
29 | 39 |
30 #endif // CONTENT_PUBLIC_COMMON_BINDINGS_POLICY_H_ | 40 #endif // CONTENT_PUBLIC_COMMON_BINDINGS_POLICY_H_ |
OLD | NEW |