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

Unified Diff: content/public/browser/web_contents.cc

Issue 1461243002: [OLD ATTEMPT, DO NOT REVIEW] mustash: Enable connections to mus from the Chrome renderer Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Invert connection creation flow. Needs lots of work. Created 5 years, 1 month 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
Index: content/public/browser/web_contents.cc
diff --git a/content/public/browser/web_contents.cc b/content/public/browser/web_contents.cc
index 1b6d8a687521d4a0878511ecf8ecbda9e34d5a8d..10d9eab16f6c1a4df47b454b05e36cbd233f30ec 100644
--- a/content/public/browser/web_contents.cc
+++ b/content/public/browser/web_contents.cc
@@ -25,8 +25,12 @@ WebContents::CreateParams::CreateParams(BrowserContext* context,
main_frame_widget_routing_id(MSG_ROUTING_NONE),
initially_hidden(false),
guest_delegate(nullptr),
+#if defined(MOJO_SHELL_CLIENT)
+ mus_window(nullptr),
+#endif
context(nullptr),
- renderer_initiated_creation(false) {}
+ renderer_initiated_creation(false) {
+}
WebContents::CreateParams::~CreateParams() {
}

Powered by Google App Engine
This is Rietveld 408576698