Chromium Code Reviews| Index: content/public/common/bindings_policy.h |
| diff --git a/content/public/common/bindings_policy.h b/content/public/common/bindings_policy.h |
| index ee3b0e87efded12a71fb718dbe1dd81e3b7c6909..a609ca8d4672d458fd97d691a67d5a0bfec4c28f 100644 |
| --- a/content/public/common/bindings_policy.h |
| +++ b/content/public/common/bindings_policy.h |
| @@ -32,9 +32,10 @@ enum BindingsPolicy { |
| // normal web contents and are intended only for use with WebUI and layout |
| // tests. |
| BINDINGS_POLICY_MOJO = 1 << 3, |
| - |
| + // Similar to BINDINGS_POLICY_MOJO except it's intended for use by |
| + // HeadlessWebConents. |
|
Sami
2016/06/27 11:10:41
typo: HeadlessWebContents
alex clarke (OOO till 29th)
2016/06/27 11:35:52
Done.
|
| + BINDINGS_POLICY_HEADLESS = 1 << 4, |
| }; |
| - |
| } |
| #endif // CONTENT_PUBLIC_COMMON_BINDINGS_POLICY_H_ |