OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 CHROME_RENDERER_PEPPER_PNACL_TRANSLATION_RESOURCE_HOST_H_ | 5 #ifndef CHROME_RENDERER_PEPPER_PNACL_TRANSLATION_RESOURCE_HOST_H_ |
6 #define CHROME_RENDERER_PEPPER_PNACL_TRANSLATION_RESOURCE_HOST_H_ | 6 #define CHROME_RENDERER_PEPPER_PNACL_TRANSLATION_RESOURCE_HOST_H_ |
7 | 7 |
8 #include <map> | 8 #include <map> |
9 | 9 |
10 #include "base/callback.h" | 10 #include "base/callback.h" |
(...skipping 21 matching lines...) Expand all Loading... |
32 | 32 |
33 explicit PnaclTranslationResourceHost( | 33 explicit PnaclTranslationResourceHost( |
34 const scoped_refptr<base::MessageLoopProxy>& io_message_loop); | 34 const scoped_refptr<base::MessageLoopProxy>& io_message_loop); |
35 void RequestNexeFd(int render_view_id, | 35 void RequestNexeFd(int render_view_id, |
36 PP_Instance instance, | 36 PP_Instance instance, |
37 const nacl::PnaclCacheInfo& cache_info, | 37 const nacl::PnaclCacheInfo& cache_info, |
38 RequestNexeFdCallback callback); | 38 RequestNexeFdCallback callback); |
39 void ReportTranslationFinished(PP_Instance instance, PP_Bool success); | 39 void ReportTranslationFinished(PP_Instance instance, PP_Bool success); |
40 | 40 |
41 protected: | 41 protected: |
42 virtual ~PnaclTranslationResourceHost(); | 42 ~PnaclTranslationResourceHost() override; |
43 | 43 |
44 private: | 44 private: |
45 // Maps the instance with an outstanding cache request to the info | 45 // Maps the instance with an outstanding cache request to the info |
46 // about that request. | 46 // about that request. |
47 typedef std::map<PP_Instance, RequestNexeFdCallback> CacheRequestInfoMap; | 47 typedef std::map<PP_Instance, RequestNexeFdCallback> CacheRequestInfoMap; |
48 | 48 |
49 // IPC::MessageFilter implementation. | 49 // IPC::MessageFilter implementation. |
50 virtual bool OnMessageReceived(const IPC::Message& message) override; | 50 bool OnMessageReceived(const IPC::Message& message) override; |
51 virtual void OnFilterAdded(IPC::Sender* sender) override; | 51 void OnFilterAdded(IPC::Sender* sender) override; |
52 virtual void OnFilterRemoved() override; | 52 void OnFilterRemoved() override; |
53 virtual void OnChannelClosing() override; | 53 void OnChannelClosing() override; |
54 | 54 |
55 void SendRequestNexeFd(int render_view_id, | 55 void SendRequestNexeFd(int render_view_id, |
56 PP_Instance instance, | 56 PP_Instance instance, |
57 const nacl::PnaclCacheInfo& cache_info, | 57 const nacl::PnaclCacheInfo& cache_info, |
58 RequestNexeFdCallback callback); | 58 RequestNexeFdCallback callback); |
59 void SendReportTranslationFinished(PP_Instance instance, | 59 void SendReportTranslationFinished(PP_Instance instance, |
60 PP_Bool success); | 60 PP_Bool success); |
61 void OnNexeTempFileReply(PP_Instance instance, | 61 void OnNexeTempFileReply(PP_Instance instance, |
62 bool is_hit, | 62 bool is_hit, |
63 IPC::PlatformFileForTransit file); | 63 IPC::PlatformFileForTransit file); |
64 void CleanupCacheRequests(); | 64 void CleanupCacheRequests(); |
65 | 65 |
66 scoped_refptr<base::MessageLoopProxy> io_message_loop_; | 66 scoped_refptr<base::MessageLoopProxy> io_message_loop_; |
67 | 67 |
68 // Should be accessed on the io thread. | 68 // Should be accessed on the io thread. |
69 IPC::Sender* sender_; | 69 IPC::Sender* sender_; |
70 CacheRequestInfoMap pending_cache_requests_; | 70 CacheRequestInfoMap pending_cache_requests_; |
71 DISALLOW_COPY_AND_ASSIGN(PnaclTranslationResourceHost); | 71 DISALLOW_COPY_AND_ASSIGN(PnaclTranslationResourceHost); |
72 }; | 72 }; |
73 | 73 |
74 #endif // CHROME_RENDERER_PEPPER_PNACL_TRANSLATION_RESOURCE_HOST_H_ | 74 #endif // CHROME_RENDERER_PEPPER_PNACL_TRANSLATION_RESOURCE_HOST_H_ |
OLD | NEW |