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

Unified Diff: mojo/runner/host/child_process.cc

Issue 1575763002: Make `content` target build without unused data members on Linux. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@use_disallow_copy_assign_linux_only
Patch Set: fix unit test Created 4 years, 11 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 | « media/blink/url_index.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mojo/runner/host/child_process.cc
diff --git a/mojo/runner/host/child_process.cc b/mojo/runner/host/child_process.cc
index 76fa7394e7b48a7359e54ae5c58bddfaaa786333..1cb0d6291af26112b340b9516f7040df488a0945 100644
--- a/mojo/runner/host/child_process.cc
+++ b/mojo/runner/host/child_process.cc
@@ -254,11 +254,7 @@ class ChildControllerImpl : public ChildController {
ChildControllerImpl(AppContext* app_context,
base::NativeLibrary app_library,
const Blocker::Unblocker& unblocker)
- : app_context_(app_context),
- app_library_(app_library),
- unblocker_(unblocker),
- channel_info_(nullptr),
- binding_(this) {}
+ : app_library_(app_library), unblocker_(unblocker), binding_(this) {}
static void StartAppOnMainThread(
base::NativeLibrary app_library,
@@ -269,12 +265,10 @@ class ChildControllerImpl : public ChildController {
}
base::ThreadChecker thread_checker_;
- AppContext* const app_context_;
base::NativeLibrary app_library_;
Blocker::Unblocker unblocker_;
StartAppCallback on_app_complete_;
- embedder::ChannelInfo* channel_info_;
Binding<ChildController> binding_;
DISALLOW_COPY_AND_ASSIGN(ChildControllerImpl);
« no previous file with comments | « media/blink/url_index.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698