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

Unified Diff: content/common/gpu/gpu_channel_manager.h

Issue 9289052: Adding GpuMemoryManager to track GpuCommandBufferStub visibility and last_used_time and dictate mem… (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: . Created 8 years, 11 months 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/common/gpu/gpu_channel.cc ('k') | content/common/gpu/gpu_channel_manager.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/common/gpu/gpu_channel_manager.h
diff --git a/content/common/gpu/gpu_channel_manager.h b/content/common/gpu/gpu_channel_manager.h
index f48c53803aaee951895043509ec8507f001a0584..567a44f23429e9084b120fd7ccc0712cba00966b 100644
--- a/content/common/gpu/gpu_channel_manager.h
+++ b/content/common/gpu/gpu_channel_manager.h
@@ -11,6 +11,7 @@
#include "base/memory/weak_ptr.h"
#include "base/message_loop_proxy.h"
#include "build/build_config.h"
+#include "content/common/gpu/gpu_memory_manager.h"
#include "ipc/ipc_channel.h"
#include "ipc/ipc_message.h"
#include "ui/gfx/native_widget_types.h"
@@ -39,7 +40,8 @@ struct GPUCreateCommandBufferConfig;
// to send IPC messages to the browser process IO thread on the
// GpuChannelManager's behalf.
class GpuChannelManager : public IPC::Channel::Listener,
- public IPC::Message::Sender {
+ public IPC::Message::Sender,
+ public GpuMemoryManagerClient {
public:
GpuChannelManager(ChildThread* gpu_child_thread,
GpuWatchdog* watchdog,
@@ -56,6 +58,10 @@ class GpuChannelManager : public IPC::Channel::Listener,
// Sender overrides.
virtual bool Send(IPC::Message* msg) OVERRIDE;
+ // GpuMemoryManagerClient overrides.
+ virtual void AppendAllCommandBufferStubs(
+ std::vector<GpuCommandBufferStubBase*>& stubs) OVERRIDE;
+
void LoseAllContexts();
base::WeakPtrFactory<GpuChannelManager> weak_factory_;
@@ -64,6 +70,8 @@ class GpuChannelManager : public IPC::Channel::Listener,
void AddRoute(int32 routing_id, IPC::Channel::Listener* listener);
void RemoveRoute(int32 routing_id);
+ GpuMemoryManager* gpu_memory_manager() { return &gpu_memory_manager_; }
+
GpuChannel* LookupChannel(int32 client_id);
private:
@@ -91,6 +99,7 @@ class GpuChannelManager : public IPC::Channel::Listener,
// process.
typedef base::hash_map<int, scoped_refptr<GpuChannel> > GpuChannelMap;
GpuChannelMap gpu_channels_;
+ GpuMemoryManager gpu_memory_manager_;
GpuWatchdog* watchdog_;
DISALLOW_COPY_AND_ASSIGN(GpuChannelManager);
« no previous file with comments | « content/common/gpu/gpu_channel.cc ('k') | content/common/gpu/gpu_channel_manager.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698