| Index: content/shell/browser/layout_test/layout_test_message_filter.cc
|
| diff --git a/content/shell/browser/layout_test/layout_test_message_filter.cc b/content/shell/browser/layout_test/layout_test_message_filter.cc
|
| index 630417c49b6b0480da84eb3b1be1695dacf18793..73f034727a2239b58d1ae65c4dd3cc76eba62b71 100644
|
| --- a/content/shell/browser/layout_test/layout_test_message_filter.cc
|
| +++ b/content/shell/browser/layout_test/layout_test_message_filter.cc
|
| @@ -125,11 +125,13 @@ void LayoutTestMessageFilter::OnSetDatabaseQuota(int quota) {
|
| }
|
|
|
| void LayoutTestMessageFilter::OnSimulateWebNotificationClick(
|
| - const std::string& title, int action_index) {
|
| + const std::string& title,
|
| + int action_index,
|
| + const std::string& reply) {
|
| LayoutTestNotificationManager* manager =
|
| LayoutTestContentBrowserClient::Get()->GetLayoutTestNotificationManager();
|
| if (manager)
|
| - manager->SimulateClick(title, action_index);
|
| + manager->SimulateClick(title, action_index, reply);
|
| }
|
|
|
| void LayoutTestMessageFilter::OnSimulateWebNotificationClose(
|
|
|