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

Unified Diff: chrome/browser/chromeos/login/image_decoder.cc

Issue 7631063: Prefix all IPC messages used by src\chrome with Chrome. For e.g ChromeViewMsg_, ChromeViewHostMsg... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 4 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: chrome/browser/chromeos/login/image_decoder.cc
===================================================================
--- chrome/browser/chromeos/login/image_decoder.cc (revision 97468)
+++ chrome/browser/chromeos/login/image_decoder.cc (working copy)
@@ -34,9 +34,10 @@
bool ImageDecoder::OnMessageReceived(const IPC::Message& message) {
bool handled = true;
IPC_BEGIN_MESSAGE_MAP(ImageDecoder, message)
- IPC_MESSAGE_HANDLER(UtilityHostMsg_DecodeImage_Succeeded,
+ IPC_MESSAGE_HANDLER(ChromeUtilityHostMsg_DecodeImage_Succeeded,
OnDecodeImageSucceeded)
- IPC_MESSAGE_HANDLER(UtilityHostMsg_DecodeImage_Failed, OnDecodeImageFailed)
+ IPC_MESSAGE_HANDLER(ChromeUtilityHostMsg_DecodeImage_Failed,
+ OnDecodeImageFailed)
IPC_MESSAGE_UNHANDLED(handled = false)
IPC_END_MESSAGE_MAP_EX()
return handled;
@@ -60,7 +61,7 @@
UtilityProcessHost* utility_process_host =
new UtilityProcessHost(this,
target_thread_id_);
- utility_process_host->Send(new UtilityMsg_DecodeImage(image_data));
+ utility_process_host->Send(new ChromeUtilityMsg_DecodeImage(image_data));
}
} // namespace chromeos
« no previous file with comments | « chrome/browser/chrome_content_browser_client.cc ('k') | chrome/browser/chromeos/status/memory_menu_button.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698