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

Unified Diff: content/public/common/mojo_application_info.cc

Issue 1947313002: Enable content embedders to specify mojo application task runner. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: restores mojo:media in browser Created 4 years, 7 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/public/common/mojo_application_info.h ('k') | content/public/utility/content_utility_client.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/public/common/mojo_application_info.cc
diff --git a/content/public/common/mojo_application_info.cc b/content/public/common/mojo_application_info.cc
new file mode 100644
index 0000000000000000000000000000000000000000..23250d83bf610350f61b3f032f038f57911a554b
--- /dev/null
+++ b/content/public/common/mojo_application_info.cc
@@ -0,0 +1,21 @@
+// 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 "content/public/common/mojo_application_info.h"
+
+#include "base/callback.h"
+#include "base/single_thread_task_runner.h"
+
+namespace content {
+
+MojoApplicationInfo::MojoApplicationInfo() {}
+
+MojoApplicationInfo::MojoApplicationInfo(const MojoApplicationInfo& other) {
+ application_factory = other.application_factory;
+ application_task_runner = other.application_task_runner;
+}
+
+MojoApplicationInfo::~MojoApplicationInfo() {}
+
+} // namespace content
« no previous file with comments | « content/public/common/mojo_application_info.h ('k') | content/public/utility/content_utility_client.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698