| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef COMPONENTS_NACL_RENDERER_MANIFEST_SERVICE_CHANNEL_H_ | 5 #ifndef COMPONENTS_NACL_RENDERER_MANIFEST_SERVICE_CHANNEL_H_ |
| 6 #define COMPONENTS_NACL_RENDERER_MANIFEST_SERVICE_CHANNEL_H_ | 6 #define COMPONENTS_NACL_RENDERER_MANIFEST_SERVICE_CHANNEL_H_ |
| 7 | 7 |
| 8 #include <stdint.h> |
| 9 |
| 8 #include "base/callback.h" | 10 #include "base/callback.h" |
| 9 #include "base/files/file.h" | 11 #include "base/files/file.h" |
| 10 #include "base/macros.h" | 12 #include "base/macros.h" |
| 11 #include "base/memory/scoped_ptr.h" | 13 #include "base/memory/scoped_ptr.h" |
| 12 #include "base/memory/weak_ptr.h" | 14 #include "base/memory/weak_ptr.h" |
| 13 #include "base/process/process.h" | 15 #include "base/process/process.h" |
| 14 #include "base/synchronization/lock.h" | 16 #include "base/synchronization/lock.h" |
| 15 #include "ipc/ipc_listener.h" | 17 #include "ipc/ipc_listener.h" |
| 16 | 18 |
| 17 namespace base { | 19 namespace base { |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 49 const IPC::ChannelHandle& handle, | 51 const IPC::ChannelHandle& handle, |
| 50 const base::Callback<void(int32_t)>& connected_callback, | 52 const base::Callback<void(int32_t)>& connected_callback, |
| 51 scoped_ptr<Delegate> delegate, | 53 scoped_ptr<Delegate> delegate, |
| 52 base::WaitableEvent* waitable_event); | 54 base::WaitableEvent* waitable_event); |
| 53 ~ManifestServiceChannel() override; | 55 ~ManifestServiceChannel() override; |
| 54 | 56 |
| 55 void Send(IPC::Message* message); | 57 void Send(IPC::Message* message); |
| 56 | 58 |
| 57 // Listener implementation. | 59 // Listener implementation. |
| 58 bool OnMessageReceived(const IPC::Message& message) override; | 60 bool OnMessageReceived(const IPC::Message& message) override; |
| 59 void OnChannelConnected(int32 peer_pid) override; | 61 void OnChannelConnected(int32_t peer_pid) override; |
| 60 void OnChannelError() override; | 62 void OnChannelError() override; |
| 61 | 63 |
| 62 private: | 64 private: |
| 63 void OnStartupInitializationComplete(); | 65 void OnStartupInitializationComplete(); |
| 64 void OnOpenResource(const std::string& key, IPC::Message* reply); | 66 void OnOpenResource(const std::string& key, IPC::Message* reply); |
| 65 void DidOpenResource(IPC::Message* reply, | 67 void DidOpenResource(IPC::Message* reply, |
| 66 base::File file, | 68 base::File file, |
| 67 uint64_t token_lo, | 69 uint64_t token_lo, |
| 68 uint64_t token_hi); | 70 uint64_t token_hi); |
| 69 base::Callback<void(int32_t)> connected_callback_; | 71 base::Callback<void(int32_t)> connected_callback_; |
| 70 scoped_ptr<Delegate> delegate_; | 72 scoped_ptr<Delegate> delegate_; |
| 71 scoped_ptr<IPC::SyncChannel> channel_; | 73 scoped_ptr<IPC::SyncChannel> channel_; |
| 72 | 74 |
| 73 base::ProcessId peer_pid_; | 75 base::ProcessId peer_pid_; |
| 74 | 76 |
| 75 // Note: This should remain the last member so it'll be destroyed and | 77 // Note: This should remain the last member so it'll be destroyed and |
| 76 // invalidate the weak pointers before any other members are destroyed. | 78 // invalidate the weak pointers before any other members are destroyed. |
| 77 base::WeakPtrFactory<ManifestServiceChannel> weak_ptr_factory_; | 79 base::WeakPtrFactory<ManifestServiceChannel> weak_ptr_factory_; |
| 78 | 80 |
| 79 DISALLOW_COPY_AND_ASSIGN(ManifestServiceChannel); | 81 DISALLOW_COPY_AND_ASSIGN(ManifestServiceChannel); |
| 80 }; | 82 }; |
| 81 | 83 |
| 82 } // namespace nacl | 84 } // namespace nacl |
| 83 | 85 |
| 84 #endif // COMPONENTS_NACL_RENDERER_MANIFEST_SERVICE_CHANNEL_H_ | 86 #endif // COMPONENTS_NACL_RENDERER_MANIFEST_SERVICE_CHANNEL_H_ |
| OLD | NEW |