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

Unified Diff: content/common/gpu/client/command_buffer_proxy_impl.h

Issue 10389164: Cleanup: Remove unneeded scoped_ptr.h includes from content. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 8 years, 7 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
Index: content/common/gpu/client/command_buffer_proxy_impl.h
===================================================================
--- content/common/gpu/client/command_buffer_proxy_impl.h (revision 137567)
+++ content/common/gpu/client/command_buffer_proxy_impl.h (working copy)
@@ -15,8 +15,8 @@
#include "gpu/ipc/command_buffer_proxy.h"
#include "base/callback.h"
-#include "base/memory/linked_ptr.h"
-#include "base/memory/scoped_ptr.h"
+#include "base/compiler_specific.h"
+#include "base/memory/ref_counted.h"
#include "base/memory/weak_ptr.h"
#include "content/common/gpu/client/gpu_video_decode_accelerator_host.h"
#include "gpu/command_buffer/common/command_buffer.h"
@@ -34,10 +34,10 @@
// Client side proxy that forwards messages synchronously to a
// CommandBufferStub.
-class CommandBufferProxyImpl :
- public CommandBufferProxy,
- public IPC::Channel::Listener,
- public base::SupportsWeakPtr<CommandBufferProxyImpl> {
+class CommandBufferProxyImpl
+ : public CommandBufferProxy,
+ public IPC::Channel::Listener,
+ public base::SupportsWeakPtr<CommandBufferProxyImpl> {
public:
typedef base::Callback<void(
const std::string& msg, int id)> GpuConsoleMessageCallback;
« no previous file with comments | « content/browser/speech/input_tag_speech_dispatcher_host.h ('k') | content/common/gpu/media/gpu_video_decode_accelerator.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698