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

Unified Diff: chrome/browser/tab_contents/insecure_content_infobar_delegate.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/tab_contents/insecure_content_infobar_delegate.cc
===================================================================
--- chrome/browser/tab_contents/insecure_content_infobar_delegate.cc (revision 97468)
+++ chrome/browser/tab_contents/insecure_content_infobar_delegate.cc (working copy)
@@ -67,8 +67,8 @@
int32 routing_id = tab_contents_->routing_id();
tab_contents_->Send((type_ == DISPLAY) ? static_cast<IPC::Message*>(
- new ViewMsg_SetAllowDisplayingInsecureContent(routing_id, true)) :
- new ViewMsg_SetAllowRunningInsecureContent(routing_id, true));
+ new ChromeViewMsg_SetAllowDisplayingInsecureContent(routing_id, true)) :
+ new ChromeViewMsg_SetAllowRunningInsecureContent(routing_id, true));
return true;
}

Powered by Google App Engine
This is Rietveld 408576698