| Index: content/browser/renderer_host/render_message_filter.h
|
| diff --git a/content/browser/renderer_host/render_message_filter.h b/content/browser/renderer_host/render_message_filter.h
|
| index 3d5a77a676063e38461fe60fdffa26de5b2265dd..da0f72aa69af6bcc01df95db188090388fb748df 100644
|
| --- a/content/browser/renderer_host/render_message_filter.h
|
| +++ b/content/browser/renderer_host/render_message_filter.h
|
| @@ -90,6 +90,9 @@ class RenderMessageFilter : public content::BrowserMessageFilter {
|
| virtual bool OnMessageReceived(const IPC::Message& message,
|
| bool* message_was_ok) OVERRIDE;
|
| virtual void OnDestruct() const OVERRIDE;
|
| + virtual void OverrideThreadForMessage(
|
| + const IPC::Message& message,
|
| + content::BrowserThread::ID* thread) OVERRIDE;
|
|
|
| bool OffTheRecord() const;
|
|
|
| @@ -183,6 +186,10 @@ class RenderMessageFilter : public content::BrowserMessageFilter {
|
| void OnGetHardwareSampleRate(int* sample_rate);
|
| void OnGetHardwareInputChannelLayout(ChannelLayout* layout);
|
|
|
| + // Used to look up the monitor color profile for a window.
|
| + void OnGetMonitorColorProfile(gfx::NativeViewId parent_window,
|
| + std::vector<char>* profile);
|
| +
|
| // Used to ask the browser to allocate a block of shared memory for the
|
| // renderer to send back data in, since shared memory can't be created
|
| // in the renderer on POSIX due to the sandbox.
|
|
|