| Index: content/public/test/mock_render_process_host.h
|
| diff --git a/content/public/test/mock_render_process_host.h b/content/public/test/mock_render_process_host.h
|
| index 4b99782bd5d5bc4ec3f101b00f2b269afe9b76a1..573e2504aeaf42195480859632e5ea6694bbe534 100644
|
| --- a/content/public/test/mock_render_process_host.h
|
| +++ b/content/public/test/mock_render_process_host.h
|
| @@ -47,7 +47,7 @@ class MockRenderProcessHost : public RenderProcessHost {
|
| virtual void WidgetRestored() OVERRIDE;
|
| virtual void WidgetHidden() OVERRIDE;
|
| virtual int VisibleWidgetCount() const OVERRIDE;
|
| - virtual bool IsGuest() const OVERRIDE;
|
| + virtual bool IsIsolatedGuest() const OVERRIDE;
|
| virtual StoragePartition* GetStoragePartition() const OVERRIDE;
|
| virtual void AddWord(const base::string16& word);
|
| virtual bool FastShutdownIfPossible() OVERRIDE;
|
| @@ -97,10 +97,6 @@ class MockRenderProcessHost : public RenderProcessHost {
|
|
|
| int GetActiveViewCount();
|
|
|
| - void SetIsGuest(bool is_guest) {
|
| - is_guest_ = is_guest;
|
| - }
|
| -
|
| private:
|
| // Stores IPC messages that would have been sent to the renderer.
|
| IPC::TestSink sink_;
|
| @@ -115,7 +111,6 @@ class MockRenderProcessHost : public RenderProcessHost {
|
| IDMap<IPC::Listener> listeners_;
|
| bool fast_shutdown_started_;
|
| bool deletion_callback_called_;
|
| - bool is_guest_;
|
|
|
| DISALLOW_COPY_AND_ASSIGN(MockRenderProcessHost);
|
| };
|
|
|