| Index: ui/ozone/platform/dri/dri_surface_factory.h
|
| diff --git a/ui/ozone/platform/dri/dri_surface_factory.h b/ui/ozone/platform/dri/dri_surface_factory.h
|
| deleted file mode 100644
|
| index d05ad5f711f4f0f5f92bcb817ffbb975dd259e84..0000000000000000000000000000000000000000
|
| --- a/ui/ozone/platform/dri/dri_surface_factory.h
|
| +++ /dev/null
|
| @@ -1,93 +0,0 @@
|
| -// Copyright 2014 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 UI_OZONE_PLATFORM_DRI_DRI_SURFACE_FACTORY_H_
|
| -#define UI_OZONE_PLATFORM_DRI_DRI_SURFACE_FACTORY_H_
|
| -
|
| -#include <map>
|
| -#include <vector>
|
| -
|
| -#include "base/memory/scoped_ptr.h"
|
| -#include "base/timer/timer.h"
|
| -#include "third_party/skia/include/core/SkBitmap.h"
|
| -#include "ui/ozone/platform/dri/hardware_cursor_delegate.h"
|
| -#include "ui/ozone/public/surface_factory_ozone.h"
|
| -
|
| -namespace ui {
|
| -
|
| -class DriBuffer;
|
| -class DriWindowDelegateManager;
|
| -class DriWrapper;
|
| -class ScreenManager;
|
| -class SurfaceOzoneCanvas;
|
| -
|
| -// SurfaceFactoryOzone implementation on top of DRM/KMS using dumb buffers.
|
| -// This implementation is used in conjunction with the software rendering
|
| -// path.
|
| -class DriSurfaceFactory : public SurfaceFactoryOzone,
|
| - public HardwareCursorDelegate {
|
| - public:
|
| - static const gfx::AcceleratedWidget kDefaultWidgetHandle;
|
| -
|
| - DriSurfaceFactory(DriWrapper* drm,
|
| - ScreenManager* screen_manager,
|
| - DriWindowDelegateManager* window_manager);
|
| - virtual ~DriSurfaceFactory();
|
| -
|
| - // Describes the state of the hardware after initialization.
|
| - enum HardwareState {
|
| - UNINITIALIZED,
|
| - INITIALIZED,
|
| - FAILED,
|
| - };
|
| -
|
| - // Open the display device.
|
| - HardwareState InitializeHardware();
|
| -
|
| - // Close the display device.
|
| - void ShutdownHardware();
|
| -
|
| - // SurfaceFactoryOzone:
|
| - virtual scoped_ptr<SurfaceOzoneCanvas> CreateCanvasForWidget(
|
| - gfx::AcceleratedWidget widget) override;
|
| - virtual bool LoadEGLGLES2Bindings(
|
| - AddGLLibraryCallback add_gl_library,
|
| - SetGLGetProcAddressProcCallback set_gl_get_proc_address) override;
|
| -
|
| - // HardwareCursorDelegate:
|
| - virtual void SetHardwareCursor(gfx::AcceleratedWidget widget,
|
| - const std::vector<SkBitmap>& bitmaps,
|
| - const gfx::Point& location,
|
| - int frame_delay_ms) override;
|
| - virtual void MoveHardwareCursor(gfx::AcceleratedWidget window,
|
| - const gfx::Point& location) override;
|
| -
|
| - protected:
|
| - // Draw the last set cursor & update the cursor plane.
|
| - void ResetCursor();
|
| -
|
| - // Draw next frame in an animated cursor.
|
| - void OnCursorAnimationTimeout();
|
| -
|
| - DriWrapper* drm_; // Not owned.
|
| - ScreenManager* screen_manager_; // Not owned.
|
| - DriWindowDelegateManager* window_manager_; // Not owned.
|
| - HardwareState state_;
|
| -
|
| - scoped_refptr<DriBuffer> cursor_buffers_[2];
|
| - int cursor_frontbuffer_;
|
| -
|
| - gfx::AcceleratedWidget cursor_widget_;
|
| - std::vector<SkBitmap> cursor_bitmaps_;
|
| - gfx::Point cursor_location_;
|
| - int cursor_frame_;
|
| - int cursor_frame_delay_ms_;
|
| - base::RepeatingTimer<DriSurfaceFactory> cursor_timer_;
|
| -
|
| - DISALLOW_COPY_AND_ASSIGN(DriSurfaceFactory);
|
| -};
|
| -
|
| -} // namespace ui
|
| -
|
| -#endif // UI_OZONE_PLATFORM_DRI_DRI_SURFACE_FACTORY_H_
|
|
|