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

Unified Diff: mojo/shell/connect_to_application_params.cc

Issue 1307273004: Group ConnectToApplication-related info into a params struct. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 3 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 | « mojo/shell/connect_to_application_params.h ('k') | mojo/shell/content_handler_connection.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mojo/shell/connect_to_application_params.cc
diff --git a/mojo/shell/connect_to_application_params.cc b/mojo/shell/connect_to_application_params.cc
new file mode 100644
index 0000000000000000000000000000000000000000..f1f4f2605c45152ad01a723be9780317a8e7d678
--- /dev/null
+++ b/mojo/shell/connect_to_application_params.cc
@@ -0,0 +1,40 @@
+// Copyright 2015 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "mojo/shell/connect_to_application_params.h"
+
+#include "mojo/shell/application_instance.h"
+
+namespace mojo {
+namespace shell {
+
+ConnectToApplicationParams::ConnectToApplicationParams() {}
+
+ConnectToApplicationParams::~ConnectToApplicationParams() {}
+
+void ConnectToApplicationParams::SetOriginatorInfo(
+ ApplicationInstance* originator) {
+ if (!originator) {
+ originator_identity_ = Identity();
+ originator_filter_.clear();
+ return;
+ }
+
+ originator_identity_ = originator->identity();
+ originator_filter_ = originator->filter();
+}
+
+void ConnectToApplicationParams::SetURLInfo(const GURL& app_url) {
+ app_url_ = app_url;
+ app_url_request_ = URLRequest::New();
+ app_url_request_->url = app_url_.spec();
+}
+
+void ConnectToApplicationParams::SetURLInfo(URLRequestPtr app_url_request) {
+ app_url_request_ = app_url_request.Pass();
+ app_url_ = app_url_request_ ? GURL(app_url_request_->url) : GURL();
+}
+
+} // namespace shell
+} // namespace mojo
« no previous file with comments | « mojo/shell/connect_to_application_params.h ('k') | mojo/shell/content_handler_connection.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698