Chromium Code Reviews

Unified Diff: mojo/shell/external_application_listener_win.cc

Issue 775343004: Move //mojo/shell to //shell (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 6 years ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
« no previous file with comments | « mojo/shell/external_application_listener_win.h ('k') | mojo/shell/external_application_registrar.mojom » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mojo/shell/external_application_listener_win.cc
diff --git a/mojo/shell/external_application_listener_win.cc b/mojo/shell/external_application_listener_win.cc
deleted file mode 100644
index f2c3151e3ced4c72a58fc081805309c3657f6c7a..0000000000000000000000000000000000000000
--- a/mojo/shell/external_application_listener_win.cc
+++ /dev/null
@@ -1,49 +0,0 @@
-// Copyright 2014 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/external_application_listener_win.h"
-
-#include "base/callback.h"
-#include "base/files/file_path.h"
-#include "base/memory/ref_counted.h"
-#include "base/memory/scoped_ptr.h"
-#include "base/sequenced_task_runner.h"
-
-namespace mojo {
-namespace shell {
-
-// static
-base::FilePath ExternalApplicationListener::ConstructDefaultSocketPath() {
- return base::FilePath(FILE_PATH_LITERAL(""));
-}
-
-// static
-scoped_ptr<ExternalApplicationListener> ExternalApplicationListener::Create(
- const scoped_refptr<base::SequencedTaskRunner>& shell_runner,
- const scoped_refptr<base::SequencedTaskRunner>& io_runner) {
- return make_scoped_ptr(new ExternalApplicationListenerStub);
-}
-
-ExternalApplicationListenerStub::ExternalApplicationListenerStub() {
-}
-
-ExternalApplicationListenerStub::~ExternalApplicationListenerStub() {
-}
-
-void ExternalApplicationListenerStub::ListenInBackground(
- const base::FilePath& listen_socket_path,
- const RegisterCallback& register_callback) {
-}
-
-void ExternalApplicationListenerStub::ListenInBackgroundWithErrorCallback(
- const base::FilePath& listen_socket_path,
- const RegisterCallback& register_callback,
- const ErrorCallback& error_callback) {
-}
-
-void ExternalApplicationListenerStub::WaitForListening() {
-}
-
-} // namespace shell
-} // namespace mojo
« no previous file with comments | « mojo/shell/external_application_listener_win.h ('k') | mojo/shell/external_application_registrar.mojom » ('j') | no next file with comments »

Powered by Google App Engine