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

Unified Diff: content/browser/renderer_host/render_message_filter.h

Issue 10448110: Adds monitor ICC profile support for win and mac (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Fix Windows lak Created 8 years, 6 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 side-by-side diff with in-line comments
Download patch
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 ab54ac33f98fe7ee416491fac99d56273e4430b6..dc9d978302009fb8699a1e83e831a0df11cae2ff 100644
--- a/content/browser/renderer_host/render_message_filter.h
+++ b/content/browser/renderer_host/render_message_filter.h
@@ -82,6 +82,10 @@ class RenderMessageFilter : public content::BrowserMessageFilter {
RenderWidgetHelper* render_widget_helper,
content::MediaObserver* media_observer);
+ virtual void OverrideThreadForMessage(
Evan Stade 2012/06/12 00:48:24 this needs to go next to other OVERRIDEs from the
tpayne 2012/06/19 17:51:15 Done.
+ const IPC::Message& message,
+ content::BrowserThread::ID* thread) OVERRIDE;
+
// IPC::ChannelProxy::MessageFilter methods:
virtual void OnChannelClosing() OVERRIDE;
virtual void OnChannelConnected(int32 peer_pid) OVERRIDE;
@@ -183,6 +187,11 @@ 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 or a named profile.
+ void OnGetMonitorColorProfile(gfx::NativeViewId parent_hwnd,
+ std::string type,
+ IPC::Message* reply_msg);
+
// 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.

Powered by Google App Engine
This is Rietveld 408576698