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

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 android build Created 8 years, 5 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
« no previous file with comments | « no previous file | content/browser/renderer_host/render_message_filter.cc » ('j') | ui/gfx/color_profile_mac.cc » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 476541a3083133a12e5e56656363fe0f7fba1b00..2a4b11cf65ef7ffe6ad4983c26502a9477eb01af 100644
--- a/content/browser/renderer_host/render_message_filter.h
+++ b/content/browser/renderer_host/render_message_filter.h
@@ -89,6 +89,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;
@@ -182,6 +185,9 @@ class RenderMessageFilter : public content::BrowserMessageFilter {
void OnGetHardwareSampleRate(int* sample_rate);
void OnGetHardwareInputChannelLayout(ChannelLayout* layout);
+ // Used to look up the monitor color profile.
+ void OnGetMonitorColorProfile(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.
« no previous file with comments | « no previous file | content/browser/renderer_host/render_message_filter.cc » ('j') | ui/gfx/color_profile_mac.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698