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

Unified Diff: blimp/engine/app/blimp_main.cc

Issue 1551583003: Implementation and fixes for Blimp client/engine E2E communication. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@dtrainor-linux-cl1528243002
Patch Set: Addressed haibin's feedback, made an ObserverList for ConnectionErrorObserver Created 5 years 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: blimp/engine/app/blimp_main.cc
diff --git a/blimp/engine/app/blimp_main.cc b/blimp/engine/app/blimp_main.cc
index 64e3e5343802704fd9998442b485145ec2b708b2..5bb3ef3cfde930940c1ca0b89143d99d270c08f8 100644
--- a/blimp/engine/app/blimp_main.cc
+++ b/blimp/engine/app/blimp_main.cc
@@ -2,10 +2,12 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
+#include "base/command_line.h"
#include "blimp/engine/app/blimp_content_main_delegate.h"
#include "content/public/app/content_main.h"
int main(int argc, const char** argv) {
+ base::CommandLine::Init(argc, argv);
blimp::engine::BlimpContentMainDelegate delegate;
content::ContentMainParams params(&delegate);
params.argc = argc;

Powered by Google App Engine
This is Rietveld 408576698