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

Unified Diff: blimp/client/app/linux/blimp_main.cc

Issue 2349073002: Blimp Settings framework on the c++ side (Closed)
Patch Set: fix trybot error Created 4 years, 2 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
Index: blimp/client/app/linux/blimp_main.cc
diff --git a/blimp/client/app/linux/blimp_main.cc b/blimp/client/app/linux/blimp_main.cc
index 2f06d931953f8610e13822bcce2b2bd6a73ad227..c303a817247888b440ba9f5649a876873fd24031 100644
--- a/blimp/client/app/linux/blimp_main.cc
+++ b/blimp/client/app/linux/blimp_main.cc
@@ -51,7 +51,9 @@ int main(int argc, const char**argv) {
base::WrapUnique<blimp::client::BlimpClientContext>(
blimp::client::BlimpClientContext::Create(
io_thread.task_runner(), io_thread.task_runner(),
- base::WrapUnique(compositor_dependencies)));
+ base::WrapUnique(compositor_dependencies),
+ static_cast<blimp::client::BlimpClientContextDelegateLinux*>
+ (context_delegate.get())->pref_service()));
Bernhard Bauer 2016/10/25 14:30:50 Is this indented correctly?
Menglin 2016/10/25 18:32:52 Done.
context->SetDelegate(context_delegate.get());
context->Connect();

Powered by Google App Engine
This is Rietveld 408576698