| Index: content/browser/in_process_webkit/browser_webkitplatformsupport_impl.cc
|
| diff --git a/content/browser/in_process_webkit/browser_webkitplatformsupport_impl.cc b/content/browser/in_process_webkit/browser_webkitplatformsupport_impl.cc
|
| index 58e6322de64764800d24dfe5b6fb44bef7f7662e..a3eb30ce5d4c0e89677ba8816d18d68931c3cc3d 100644
|
| --- a/content/browser/in_process_webkit/browser_webkitplatformsupport_impl.cc
|
| +++ b/content/browser/in_process_webkit/browser_webkitplatformsupport_impl.cc
|
| @@ -6,6 +6,7 @@
|
|
|
| #include "base/file_util.h"
|
| #include "base/logging.h"
|
| +#include "content/browser/gpu/browser_gpu_channel_host_factory.h"
|
| #include "content/browser/in_process_webkit/dom_storage_message_filter.h"
|
| #include "content/browser/in_process_webkit/indexed_db_key_utility_client.h"
|
| #include "content/common/indexed_db/indexed_db_key.h"
|
| @@ -176,3 +177,8 @@ BrowserWebKitPlatformSupportImpl::injectIDBKeyIntoSerializedValue(
|
| return IndexedDBKeyUtilityClient::InjectIDBKeyIntoSerializedValue(
|
| IndexedDBKey(key), content::SerializedScriptValue(value), keyPath);
|
| }
|
| +
|
| +GpuChannelHostFactory*
|
| +BrowserWebKitPlatformSupportImpl::GetGpuChannelHostFactory() {
|
| + return content::BrowserGpuChannelHostFactory::instance();
|
| +}
|
|
|