| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 CONTENT_BROWSER_RENDERER_HOST_RENDER_MESSAGE_FILTER_H_ | 5 #ifndef CONTENT_BROWSER_RENDERER_HOST_RENDER_MESSAGE_FILTER_H_ |
| 6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_MESSAGE_FILTER_H_ | 6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_MESSAGE_FILTER_H_ |
| 7 | 7 |
| 8 #include <stddef.h> | 8 #include <stddef.h> |
| 9 #include <stdint.h> | 9 #include <stdint.h> |
| 10 | 10 |
| (...skipping 177 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 188 IPC::Message* reply_message); | 188 IPC::Message* reply_message); |
| 189 void DeletedDiscardableSharedMemoryOnFileThread(DiscardableSharedMemoryId id); | 189 void DeletedDiscardableSharedMemoryOnFileThread(DiscardableSharedMemoryId id); |
| 190 void OnDeletedDiscardableSharedMemory(DiscardableSharedMemoryId id); | 190 void OnDeletedDiscardableSharedMemory(DiscardableSharedMemoryId id); |
| 191 | 191 |
| 192 void OnCacheableMetadataAvailable(const GURL& url, | 192 void OnCacheableMetadataAvailable(const GURL& url, |
| 193 base::Time expected_response_time, | 193 base::Time expected_response_time, |
| 194 const std::vector<char>& data); | 194 const std::vector<char>& data); |
| 195 void OnKeygen(uint32_t key_size_index, | 195 void OnKeygen(uint32_t key_size_index, |
| 196 const std::string& challenge_string, | 196 const std::string& challenge_string, |
| 197 const GURL& url, | 197 const GURL& url, |
| 198 const GURL& top_origin, |
| 198 IPC::Message* reply_msg); | 199 IPC::Message* reply_msg); |
| 199 void PostKeygenToWorkerThread(IPC::Message* reply_msg, | 200 void PostKeygenToWorkerThread(IPC::Message* reply_msg, |
| 200 scoped_ptr<net::KeygenHandler> keygen_handler); | 201 scoped_ptr<net::KeygenHandler> keygen_handler); |
| 201 void OnKeygenOnWorkerThread(scoped_ptr<net::KeygenHandler> keygen_handler, | 202 void OnKeygenOnWorkerThread(scoped_ptr<net::KeygenHandler> keygen_handler, |
| 202 IPC::Message* reply_msg); | 203 IPC::Message* reply_msg); |
| 203 void OnMediaLogEvents(const std::vector<media::MediaLogEvent>&); | 204 void OnMediaLogEvents(const std::vector<media::MediaLogEvent>&); |
| 204 | 205 |
| 205 bool CheckBenchmarkingEnabled() const; | 206 bool CheckBenchmarkingEnabled() const; |
| 206 bool CheckPreparsedJsCachingEnabled() const; | 207 bool CheckPreparsedJsCachingEnabled() const; |
| 207 | 208 |
| (...skipping 29 matching lines...) Expand all Loading... |
| 237 | 238 |
| 238 media::AudioManager* audio_manager_; | 239 media::AudioManager* audio_manager_; |
| 239 MediaInternals* media_internals_; | 240 MediaInternals* media_internals_; |
| 240 | 241 |
| 241 DISALLOW_COPY_AND_ASSIGN(RenderMessageFilter); | 242 DISALLOW_COPY_AND_ASSIGN(RenderMessageFilter); |
| 242 }; | 243 }; |
| 243 | 244 |
| 244 } // namespace content | 245 } // namespace content |
| 245 | 246 |
| 246 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_MESSAGE_FILTER_H_ | 247 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_MESSAGE_FILTER_H_ |
| OLD | NEW |