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

Unified Diff: mojo/shell/application_instance.h

Issue 1714753002: 7/ Eliminate on_application_end from ConnectParams (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@client_request
Patch Set: . Created 4 years, 10 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 | « content/browser/mojo/mojo_shell_context.cc ('k') | mojo/shell/application_instance.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mojo/shell/application_instance.h
diff --git a/mojo/shell/application_instance.h b/mojo/shell/application_instance.h
index 899d13a66198cfac568c913499f235c3f8b11645..621761a7faf84c9be64e185ef575fb9e655e74c4 100644
--- a/mojo/shell/application_instance.h
+++ b/mojo/shell/application_instance.h
@@ -37,7 +37,6 @@ class ApplicationInstance : public mojom::Shell,
mojom::ShellClientPtr shell_client,
ApplicationManager* manager,
const Identity& identity,
- const base::Closure& on_application_end,
const String& application_name);
~ApplicationInstance() override;
@@ -55,7 +54,6 @@ class ApplicationInstance : public mojom::Shell,
uint32_t id() const { return id_; }
base::ProcessId pid() const { return pid_; }
void set_pid(base::ProcessId pid) { pid_ = pid; }
- base::Closure on_application_end() const { return on_application_end_; }
const String& application_name() const { return application_name_; }
private:
@@ -87,7 +85,6 @@ class ApplicationInstance : public mojom::Shell,
const uint32_t id_;
const Identity identity_;
const bool allow_any_application_;
- base::Closure on_application_end_;
mojom::ShellClientPtr shell_client_;
Binding<mojom::Shell> binding_;
Binding<mojom::PIDReceiver> pid_receiver_binding_;
« no previous file with comments | « content/browser/mojo/mojo_shell_context.cc ('k') | mojo/shell/application_instance.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698