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

Unified Diff: third_party/mojo/src/mojo/edk/embedder/embedder_internal.h

Issue 1676913002: [mojo] Delete third_party/mojo (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: let's try that again Created 4 years, 10 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
Index: third_party/mojo/src/mojo/edk/embedder/embedder_internal.h
diff --git a/third_party/mojo/src/mojo/edk/embedder/embedder_internal.h b/third_party/mojo/src/mojo/edk/embedder/embedder_internal.h
deleted file mode 100644
index c66d01bce7c331c2290496ee30354dc3963b97ec..0000000000000000000000000000000000000000
--- a/third_party/mojo/src/mojo/edk/embedder/embedder_internal.h
+++ /dev/null
@@ -1,65 +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.
-
-// This header contains internal details for the *implementation* of the
-// embedder API. It should not be included by any public header (nor by users of
-// the embedder API).
-
-#ifndef THIRD_PARTY_MOJO_SRC_MOJO_EDK_EMBEDDER_EMBEDDER_INTERNAL_H_
-#define THIRD_PARTY_MOJO_SRC_MOJO_EDK_EMBEDDER_EMBEDDER_INTERNAL_H_
-
-#include <stdint.h>
-
-#include "third_party/mojo/src/mojo/edk/system/channel_id.h"
-
-namespace base {
-class TaskRunner;
-}
-
-namespace mojo {
-
-namespace system {
-
-class ChannelManager;
-class Core;
-class IPCSupport;
-
-} // namespace system
-
-namespace embedder {
-
-class PlatformSupport;
-class ProcessDelegate;
-
-// This is a type that's opaque to users of the embedder API (which only
-// gives/takes |ChannelInfo*|s). We make it a struct to make it
-// template-friendly.
-struct ChannelInfo {
- explicit ChannelInfo(system::ChannelId channel_id = 0)
- : channel_id(channel_id) {}
-
- system::ChannelId channel_id;
-};
-
-namespace internal {
-
-// Instance of |PlatformSupport| to use.
-extern PlatformSupport* g_platform_support;
-
-// Instance of |Core| used by the system functions (|Mojo...()|).
-extern system::Core* g_core;
-
-// Instance of |IPCSupport|, initialized by |InitIPCSupport()| and reset by
-// |ShutdownIPCSupport()|. This is declared here so that
-// |mojo::embedder::test::Shutdown()| can check that it's only called after
-// |ShutdownIPCSupport()|.
-extern system::IPCSupport* g_ipc_support;
-
-} // namespace internal
-
-} // namepace embedder
-
-} // namespace mojo
-
-#endif // THIRD_PARTY_MOJO_SRC_MOJO_EDK_EMBEDDER_EMBEDDER_INTERNAL_H_
« no previous file with comments | « third_party/mojo/src/mojo/edk/embedder/embedder.cc ('k') | third_party/mojo/src/mojo/edk/embedder/embedder_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698