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

Unified Diff: ipc/mojo/scoped_ipc_support.h

Issue 2074453003: Move ScopedIPCSupport to mojo/edk/embedder and the mojo::edk namespace. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 years, 6 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 | « ipc/mojo/ipc_mojo.gyp ('k') | ipc/mojo/scoped_ipc_support.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ipc/mojo/scoped_ipc_support.h
diff --git a/ipc/mojo/scoped_ipc_support.h b/ipc/mojo/scoped_ipc_support.h
deleted file mode 100644
index 1ef26fc97ca30f0749a181782f32a8b7c234e7b4..0000000000000000000000000000000000000000
--- a/ipc/mojo/scoped_ipc_support.h
+++ /dev/null
@@ -1,31 +0,0 @@
-// 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.
-
-#ifndef IPC_MOJO_SCOPED_IPC_SUPPORT_H_
-#define IPC_MOJO_SCOPED_IPC_SUPPORT_H_
-
-#include "base/macros.h"
-#include "base/memory/ref_counted.h"
-#include "base/task_runner.h"
-
-namespace IPC {
-
-// Performs any necessary Mojo IPC initialization on construction, and shuts
-// down Mojo IPC on destruction.
-//
-// This should be instantiated once per process and retained as long as Mojo IPC
-// is needed. The TaskRunner passed to the constructor should outlive this
-// object.
-class ScopedIPCSupport {
- public:
- ScopedIPCSupport(scoped_refptr<base::TaskRunner> io_thread_task_runner);
- ~ScopedIPCSupport();
-
- private:
- DISALLOW_COPY_AND_ASSIGN(ScopedIPCSupport);
-};
-
-} // namespace IPC
-
-#endif // IPC_MOJO_SCOPED_IPC_SUPPORT_H_
« no previous file with comments | « ipc/mojo/ipc_mojo.gyp ('k') | ipc/mojo/scoped_ipc_support.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698