| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "content/plugin/webplugin_delegate_stub.h" | 5 #include "content/plugin/webplugin_delegate_stub.h" |
| 6 | 6 |
| 7 #include "build/build_config.h" | 7 #include "build/build_config.h" |
| 8 | 8 |
| 9 #include "base/bind.h" | 9 #include "base/bind.h" |
| 10 #include "base/command_line.h" | 10 #include "base/command_line.h" |
| (...skipping 424 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 435 params.notify_id, | 435 params.notify_id, |
| 436 params.url, | 436 params.url, |
| 437 params.first_party_for_cookies, | 437 params.first_party_for_cookies, |
| 438 params.method, | 438 params.method, |
| 439 data, | 439 data, |
| 440 static_cast<unsigned int>(params.post_data.size()), | 440 static_cast<unsigned int>(params.post_data.size()), |
| 441 params.referrer, | 441 params.referrer, |
| 442 params.notify_redirect, | 442 params.notify_redirect, |
| 443 params.is_plugin_src_load, | 443 params.is_plugin_src_load, |
| 444 channel_->renderer_id(), | 444 channel_->renderer_id(), |
| 445 params.render_frame_id); | 445 params.render_frame_id, |
| 446 webplugin_->host_render_view_routing_id()); |
| 446 } | 447 } |
| 447 | 448 |
| 448 } // namespace content | 449 } // namespace content |
| OLD | NEW |