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

Unified Diff: chrome/gpu/gpu_view_x.h

Issue 4399003: Deleted code associated with --enable-gpu-rendering and... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 10 years, 1 month 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 | « chrome/gpu/gpu_view_win.cc ('k') | chrome/gpu/gpu_view_x.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/gpu/gpu_view_x.h
===================================================================
--- chrome/gpu/gpu_view_x.h (revision 65168)
+++ chrome/gpu/gpu_view_x.h (working copy)
@@ -1,65 +0,0 @@
-// Copyright (c) 2010 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#ifndef CHROME_GPU_GPU_VIEW_X_H_
-#define CHROME_GPU_GPU_VIEW_X_H_
-#pragma once
-
-#include "base/basictypes.h"
-#include "base/scoped_ptr.h"
-#include "chrome/gpu/x_util.h"
-#include "gfx/native_widget_types.h"
-#include "ipc/ipc_channel.h"
-
-class GpuBackingStoreGLX;
-class GpuThread;
-class GpuVideoLayerGLX;
-
-namespace gfx {
-class Rect;
-class Size;
-}
-
-class GpuViewX
- : public IPC::Channel::Listener {
- public:
- GpuViewX(GpuThread* gpu_thread,
- XID parent,
- int32 routing_id);
- ~GpuViewX();
-
- GpuThread* gpu_thread() const { return gpu_thread_; }
- XID window() const { return window_; }
-
- // Wrapper around GPUBackingStoreGLXContext using our current window.
- GLXContext BindContext();
-
- // IPC::Channel::Listener implementation.
- virtual void OnMessageReceived(const IPC::Message& message);
- virtual void OnChannelConnected(int32 peer_pid);
- virtual void OnChannelError();
-
- void DidScrollBackingStoreRect(int dx, int dy, const gfx::Rect& rect);
-
- void Repaint();
-
- private:
- // IPC message handlers.
- void OnNewBackingStore(int32 routing_id, const gfx::Size& size);
- void OnNewVideoLayer(int32 routing_id, const gfx::Size& size);
- void OnWindowPainted();
-
- GpuThread* gpu_thread_;
- int32 routing_id_;
-
- XID window_;
-
- scoped_ptr<GpuBackingStoreGLX> backing_store_;
-
- scoped_ptr<GpuVideoLayerGLX> video_layer_;
-
- DISALLOW_COPY_AND_ASSIGN(GpuViewX);
-};
-
-#endif // CHROME_GPU_GPU_VIEW_X_H_
« no previous file with comments | « chrome/gpu/gpu_view_win.cc ('k') | chrome/gpu/gpu_view_x.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698