Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(50)

Side by Side Diff: content/public/test/mock_render_process_host.h

Issue 111063003: Aura: Don't create GL context for CreateSharedSurfaceHandle() (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 #ifndef CONTENT_PUBLIC_TEST_MOCK_RENDER_PROCESS_HOST_H_ 5 #ifndef CONTENT_PUBLIC_TEST_MOCK_RENDER_PROCESS_HOST_H_
6 #define CONTENT_PUBLIC_TEST_MOCK_RENDER_PROCESS_HOST_H_ 6 #define CONTENT_PUBLIC_TEST_MOCK_RENDER_PROCESS_HOST_H_
7 7
8 #include "base/basictypes.h" 8 #include "base/basictypes.h"
9 #include "base/memory/scoped_vector.h" 9 #include "base/memory/scoped_vector.h"
10 #include "base/observer_list.h" 10 #include "base/observer_list.h"
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
66 virtual void RemovePendingView() OVERRIDE; 66 virtual void RemovePendingView() OVERRIDE;
67 virtual void SetSuddenTerminationAllowed(bool allowed) OVERRIDE; 67 virtual void SetSuddenTerminationAllowed(bool allowed) OVERRIDE;
68 virtual bool SuddenTerminationAllowed() const OVERRIDE; 68 virtual bool SuddenTerminationAllowed() const OVERRIDE;
69 virtual BrowserContext* GetBrowserContext() const OVERRIDE; 69 virtual BrowserContext* GetBrowserContext() const OVERRIDE;
70 virtual bool InSameStoragePartition( 70 virtual bool InSameStoragePartition(
71 StoragePartition* partition) const OVERRIDE; 71 StoragePartition* partition) const OVERRIDE;
72 virtual IPC::ChannelProxy* GetChannel() OVERRIDE; 72 virtual IPC::ChannelProxy* GetChannel() OVERRIDE;
73 virtual void AddFilter(BrowserMessageFilter* filter) OVERRIDE; 73 virtual void AddFilter(BrowserMessageFilter* filter) OVERRIDE;
74 virtual bool FastShutdownForPageCount(size_t count) OVERRIDE; 74 virtual bool FastShutdownForPageCount(size_t count) OVERRIDE;
75 virtual base::TimeDelta GetChildProcessIdleTime() const OVERRIDE; 75 virtual base::TimeDelta GetChildProcessIdleTime() const OVERRIDE;
76 virtual void SurfaceUpdated(int32 surface_id) OVERRIDE; 76 virtual void OnParentGpuChannelEstablished() OVERRIDE;
77 virtual void ResumeRequestsForView(int route_id) OVERRIDE; 77 virtual void ResumeRequestsForView(int route_id) OVERRIDE;
78 78
79 // IPC::Sender via RenderProcessHost. 79 // IPC::Sender via RenderProcessHost.
80 virtual bool Send(IPC::Message* msg) OVERRIDE; 80 virtual bool Send(IPC::Message* msg) OVERRIDE;
81 81
82 // IPC::Listener via RenderProcessHost. 82 // IPC::Listener via RenderProcessHost.
83 virtual bool OnMessageReceived(const IPC::Message& msg) OVERRIDE; 83 virtual bool OnMessageReceived(const IPC::Message& msg) OVERRIDE;
84 virtual void OnChannelConnected(int32 peer_pid) OVERRIDE; 84 virtual void OnChannelConnected(int32 peer_pid) OVERRIDE;
85 85
86 // Attaches the factory object so we can remove this object in its destructor 86 // Attaches the factory object so we can remove this object in its destructor
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
129 // for deleting all MockRenderProcessHosts that have not deleted by a test in 129 // for deleting all MockRenderProcessHosts that have not deleted by a test in
130 // the destructor and prevent them from being leaked. 130 // the destructor and prevent them from being leaked.
131 mutable ScopedVector<MockRenderProcessHost> processes_; 131 mutable ScopedVector<MockRenderProcessHost> processes_;
132 132
133 DISALLOW_COPY_AND_ASSIGN(MockRenderProcessHostFactory); 133 DISALLOW_COPY_AND_ASSIGN(MockRenderProcessHostFactory);
134 }; 134 };
135 135
136 } // namespace content 136 } // namespace content
137 137
138 #endif // CONTENT_PUBLIC_TEST_MOCK_RENDER_PROCESS_HOST_H_ 138 #endif // CONTENT_PUBLIC_TEST_MOCK_RENDER_PROCESS_HOST_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698