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

Unified Diff: content/common/swapped_out_messages.cc

Issue 1067373005: OOPIF: Allow OOP frames to print console messages in layout tests. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 8 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 | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/common/swapped_out_messages.cc
diff --git a/content/common/swapped_out_messages.cc b/content/common/swapped_out_messages.cc
index 3cb20a571aaa89fe58e2888c07f02cb0c85fe517..3bb622908159d7ca1fcef03d689045c84d705d8f 100644
--- a/content/common/swapped_out_messages.cc
+++ b/content/common/swapped_out_messages.cc
@@ -9,6 +9,7 @@
#include "content/common/input_messages.h"
#include "content/common/view_messages.h"
#include "content/public/common/content_client.h"
+#include "content/shell/common/shell_messages.h"
namespace content {
@@ -47,6 +48,8 @@ bool SwappedOutMessages::CanSendWhileSwappedOut(const IPC::Message* msg) {
// The browser should always have an accurate mirror of the renderer's
// notion of the current page id.
case FrameHostMsg_DidAssignPageId::ID:
+ // Used in layout tests; handled in WebKitTestController.
+ case ShellViewHostMsg_PrintMessage::ID:
dcheng 2015/04/09 01:08:55 Would it make sense to tie this to the --site-per-
Charlie Reis 2015/04/09 17:32:25 There's nothing in Chrome that processes this mess
dcheng 2015/04/09 17:37:31 sgtm
return true;
default:
break;
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698