Index: third_party/mojo/src/mojo/edk/embedder/process_delegate.h |
diff --git a/third_party/mojo/src/mojo/edk/embedder/process_delegate.h b/third_party/mojo/src/mojo/edk/embedder/process_delegate.h |
deleted file mode 100644 |
index e00591ff87f96bfab27d4c3b09316b5d09b76454..0000000000000000000000000000000000000000 |
--- a/third_party/mojo/src/mojo/edk/embedder/process_delegate.h |
+++ /dev/null |
@@ -1,39 +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 THIRD_PARTY_MOJO_SRC_MOJO_EDK_EMBEDDER_PROCESS_DELEGATE_H_ |
-#define THIRD_PARTY_MOJO_SRC_MOJO_EDK_EMBEDDER_PROCESS_DELEGATE_H_ |
- |
-#include "mojo/public/cpp/system/macros.h" |
-#include "third_party/mojo/src/mojo/edk/embedder/process_type.h" |
-#include "third_party/mojo/src/mojo/edk/system/system_impl_export.h" |
- |
-namespace mojo { |
-namespace embedder { |
- |
-// An interface for process delegates. |
-class MOJO_SYSTEM_IMPL_EXPORT ProcessDelegate { |
- public: |
- virtual ProcessType GetType() const; |
- |
- // Called when |ShutdownIPCSupport()| has "completed". Note that this is NOT |
- // called if |ShutdownIPCSupportOnIOThread()| is used instead. |
- virtual void OnShutdownComplete() = 0; |
- |
- protected: |
- ProcessDelegate() {} |
- virtual ~ProcessDelegate() {} |
- |
- private: |
- MOJO_DISALLOW_COPY_AND_ASSIGN(ProcessDelegate); |
-}; |
- |
-inline ProcessType ProcessDelegate::GetType() const { |
- return ProcessType::NONE; |
-} |
- |
-} // namespace embedder |
-} // namespace mojo |
- |
-#endif // THIRD_PARTY_MOJO_SRC_MOJO_EDK_EMBEDDER_PROCESS_DELEGATE_H_ |