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

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

Issue 10696166: Remove #pragma once from content (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 5 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 | Annotate | Revision Log
« no previous file with comments | « content/public/browser/zygote_host_linux.h ('k') | content/public/common/child_process_host.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 #pragma once
8 7
9 namespace content { 8 namespace content {
10 9
11 // 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
12 // to renderers. 11 // to renderers.
13 enum BindingsPolicy { 12 enum BindingsPolicy {
14 // 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
15 // data back to the browser process. 14 // data back to the browser process.
16 BINDINGS_POLICY_WEB_UI = 1 << 0, 15 BINDINGS_POLICY_WEB_UI = 1 << 0,
17 // 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
18 // 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
19 // 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
20 // switch.) 19 // switch.)
21 BINDINGS_POLICY_DOM_AUTOMATION = 1 << 1, 20 BINDINGS_POLICY_DOM_AUTOMATION = 1 << 1,
22 // Bindings that allow access to the external host (through automation). 21 // Bindings that allow access to the external host (through automation).
23 BINDINGS_POLICY_EXTERNAL_HOST = 1 << 2, 22 BINDINGS_POLICY_EXTERNAL_HOST = 1 << 2,
24 }; 23 };
25 24
26 } 25 }
27 26
28 #endif // CONTENT_PUBLIC_COMMON_BINDINGS_POLICY_H_ 27 #endif // CONTENT_PUBLIC_COMMON_BINDINGS_POLICY_H_
OLDNEW
« no previous file with comments | « content/public/browser/zygote_host_linux.h ('k') | content/public/common/child_process_host.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698