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

Unified Diff: content/public/common/bindings_policy.h

Issue 2049363003: Adds support for headless chrome embedder mojo services (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Abandon (for now) the concice bindings. Add BINDINGS_POLICY_HEADLESS and headless-mojo:// Created 4 years, 6 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | content/renderer/mojo_bindings_controller.h » ('j') | headless/BUILD.gn » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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_
« no previous file with comments | « no previous file | content/renderer/mojo_bindings_controller.h » ('j') | headless/BUILD.gn » ('J')

Powered by Google App Engine
This is Rietveld 408576698