| Index: content/public/test/mock_render_process_host.cc
|
| diff --git a/content/public/test/mock_render_process_host.cc b/content/public/test/mock_render_process_host.cc
|
| index 304af45823af3ef600617eac67bacc66ebf43bc1..f8c36db84e48979c51c248e1f1805a23bdcb820a 100644
|
| --- a/content/public/test/mock_render_process_host.cc
|
| +++ b/content/public/test/mock_render_process_host.cc
|
| @@ -12,6 +12,7 @@
|
| #include "content/common/child_process_host_impl.h"
|
| #include "content/public/browser/notification_service.h"
|
| #include "content/public/browser/notification_types.h"
|
| +#include "content/public/browser/storage_partition.h"
|
|
|
| namespace content {
|
|
|
| @@ -83,6 +84,10 @@ bool MockRenderProcessHost::IsGuest() const {
|
| return false;
|
| }
|
|
|
| +StoragePartition* MockRenderProcessHost::GetStoragePartition() const {
|
| + return NULL;
|
| +}
|
| +
|
| void MockRenderProcessHost::AddWord(const string16& word) {
|
| }
|
|
|
|
|