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

Side by Side Diff: content/browser/renderer_host/render_message_filter.h

Issue 1476873002: Adding <keygen> Content Setting (Final) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixing naming. Created 4 years, 11 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 unified diff | Download patch
« no previous file with comments | « no previous file | content/browser/renderer_host/render_message_filter.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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_
OLDNEW
« no previous file with comments | « no previous file | content/browser/renderer_host/render_message_filter.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698