| Index: content/renderer/pepper/pepper_device_enumeration_host_helper_unittest.cc
|
| diff --git a/content/renderer/pepper/pepper_device_enumeration_host_helper_unittest.cc b/content/renderer/pepper/pepper_device_enumeration_host_helper_unittest.cc
|
| index 895bdd8e273b16c76a9b4e0ea59317972c8c8216..4938fac44b9b79e69faa2a17a00435313fcc1c15 100644
|
| --- a/content/renderer/pepper/pepper_device_enumeration_host_helper_unittest.cc
|
| +++ b/content/renderer/pepper/pepper_device_enumeration_host_helper_unittest.cc
|
| @@ -18,6 +18,7 @@
|
| #include "ppapi/proxy/resource_message_test_sink.h"
|
| #include "ppapi/shared_impl/ppapi_permissions.h"
|
| #include "testing/gtest/include/gtest/gtest.h"
|
| +#include "url/gurl.h"
|
|
|
| namespace content {
|
|
|
| @@ -34,6 +35,7 @@ class TestDelegate : public PepperDeviceEnumerationHostHelper::Delegate {
|
|
|
| virtual int EnumerateDevices(
|
| PP_DeviceType_Dev /* type */,
|
| + const GURL& /* document_url */,
|
| const EnumerateDevicesCallback& callback) OVERRIDE {
|
| last_used_id_++;
|
| callbacks_[last_used_id_] = callback;
|
| @@ -78,7 +80,7 @@ class PepperDeviceEnumerationHostHelperTest : public testing::Test {
|
| : ppapi_host_(&sink_, ppapi::PpapiPermissions()),
|
| resource_host_(&ppapi_host_, 12345, 67890),
|
| device_enumeration_(&resource_host_, &delegate_,
|
| - PP_DEVICETYPE_DEV_AUDIOCAPTURE) {
|
| + PP_DEVICETYPE_DEV_AUDIOCAPTURE, GURL()) {
|
| }
|
|
|
| virtual ~PepperDeviceEnumerationHostHelperTest() {}
|
|
|