diff options
author | michaeln@chromium.org <michaeln@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-06-18 02:02:05 +0000 |
---|---|---|
committer | michaeln@chromium.org <michaeln@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-06-18 02:02:05 +0000 |
commit | 53c570b58354034db920c09d711ed7d9b3429f30 (patch) | |
tree | cec472d625b0fb5cfd338197ab60766c43b37627 /chrome/common/render_messages_internal.h | |
parent | 2980fdcdf74dd4c25c8718f12f3f147d2581177d (diff) | |
download | chromium_src-53c570b58354034db920c09d711ed7d9b3429f30.zip chromium_src-53c570b58354034db920c09d711ed7d9b3429f30.tar.gz chromium_src-53c570b58354034db920c09d711ed7d9b3429f30.tar.bz2 |
AppCache: add plumbing to deliver logging messages to the renderer process. These messages will be plumbed thru to the console output for the page associated with 'host_id'.BUG=13685TEST=none
Review URL: http://codereview.chromium.org/2861007
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@50197 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common/render_messages_internal.h')
-rwxr-xr-x | chrome/common/render_messages_internal.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/chrome/common/render_messages_internal.h b/chrome/common/render_messages_internal.h index 7d38c3a..df043e7 100755 --- a/chrome/common/render_messages_internal.h +++ b/chrome/common/render_messages_internal.h @@ -633,6 +633,12 @@ IPC_BEGIN_MESSAGES(View) int /* total */, int /* complete */) + // Notifies the renderer of an AppCache logging message. + IPC_MESSAGE_CONTROL3(AppCacheMsg_LogMessage, + int /* host_id */, + int /* log_level */, + std::string /* message */) + // Notifies the renderer of the fact that AppCache access was blocked. IPC_MESSAGE_CONTROL1(AppCacheMsg_ContentBlocked, int /* host_id */) |