Index: mojo/application/public/cpp/application_impl.h |
diff --git a/mojo/application/public/cpp/application_impl.h b/mojo/application/public/cpp/application_impl.h |
index a5d58f50f52dc5c18648cc207d5581cce6bd4f84..7053e715a4200f4351da82bc0031168c7ccf59df 100644 |
--- a/mojo/application/public/cpp/application_impl.h |
+++ b/mojo/application/public/cpp/application_impl.h |
@@ -64,10 +64,6 @@ class ApplicationImpl : public Application { |
const std::string& url() const { return url_; } |
- // Returns any initial configuration arguments, passed by the Shell. |
- const std::vector<std::string>& args() const { return args_; } |
- bool HasArg(const std::string& arg) const; |
- |
// Requests a new connection to an application. Returns a pointer to the |
// connection if the connection is permitted by this application's delegate, |
// or nullptr otherwise. Caller does not take ownership. The pointer remains |
@@ -85,7 +81,6 @@ class ApplicationImpl : public Application { |
// Application implementation. |
void Initialize(ShellPtr shell, |
- Array<String> args, |
const mojo::String& url) override; |
msw
2015/05/19 17:45:27
nit: fits on line above.
jam
2015/05/19 20:56:37
Done.
|
// Block until the Application is initialized, if it is not already. |
@@ -130,7 +125,6 @@ class ApplicationImpl : public Application { |
ShellPtr shell_; |
ShellPtrWatcher* shell_watch_; |
std::string url_; |
- std::vector<std::string> args_; |
MOJO_DISALLOW_COPY_AND_ASSIGN(ApplicationImpl); |
}; |