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

Side by Side Diff: ui/ozone/platform/dri/dri_window_delegate_impl.h

Issue 886323004: ozone: dri: Fix undefined references in DRI platform GN build (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: also fix gyp build Created 5 years, 10 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 unified diff | Download patch
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 UI_OZONE_PLATFORM_DRI_DRI_WINDOW_DELEGATE_IMPL_H_ 5 #ifndef UI_OZONE_PLATFORM_DRI_DRI_WINDOW_DELEGATE_IMPL_H_
6 #define UI_OZONE_PLATFORM_DRI_DRI_WINDOW_DELEGATE_IMPL_H_ 6 #define UI_OZONE_PLATFORM_DRI_DRI_WINDOW_DELEGATE_IMPL_H_
7 7
8 #include "base/timer/timer.h" 8 #include "base/timer/timer.h"
9 #include "ui/gfx/geometry/point.h" 9 #include "ui/gfx/geometry/point.h"
10 #include "ui/gfx/geometry/rect.h" 10 #include "ui/gfx/geometry/rect.h"
11 #include "ui/gfx/native_widget_types.h" 11 #include "ui/gfx/native_widget_types.h"
12 #include "ui/ozone/ozone_export.h"
12 #include "ui/ozone/platform/dri/display_change_observer.h" 13 #include "ui/ozone/platform/dri/display_change_observer.h"
13 #include "ui/ozone/platform/dri/dri_window_delegate.h" 14 #include "ui/ozone/platform/dri/dri_window_delegate.h"
14 15
15 namespace ui { 16 namespace ui {
16 17
17 class DriBuffer; 18 class DriBuffer;
18 class DriWindowDelegateManager; 19 class DriWindowDelegateManager;
19 class DriWrapper; 20 class DriWrapper;
20 class HardwareDisplayController; 21 class HardwareDisplayController;
21 class ScreenManager; 22 class ScreenManager;
22 23
23 class DriWindowDelegateImpl : public DriWindowDelegate, 24 class OZONE_EXPORT DriWindowDelegateImpl : public DriWindowDelegate,
24 public DisplayChangeObserver { 25 public DisplayChangeObserver {
25 public: 26 public:
26 DriWindowDelegateImpl(gfx::AcceleratedWidget widget, 27 DriWindowDelegateImpl(gfx::AcceleratedWidget widget,
27 DriWrapper* drm, 28 DriWrapper* drm,
28 DriWindowDelegateManager* window_manager, 29 DriWindowDelegateManager* window_manager,
29 ScreenManager* screen_manager); 30 ScreenManager* screen_manager);
30 ~DriWindowDelegateImpl() override; 31 ~DriWindowDelegateImpl() override;
31 32
32 // DriWindowDelegate: 33 // DriWindowDelegate:
33 void Initialize() override; 34 void Initialize() override;
34 void Shutdown() override; 35 void Shutdown() override;
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
75 gfx::Point cursor_location_; 76 gfx::Point cursor_location_;
76 int cursor_frame_; 77 int cursor_frame_;
77 int cursor_frame_delay_ms_; 78 int cursor_frame_delay_ms_;
78 79
79 DISALLOW_COPY_AND_ASSIGN(DriWindowDelegateImpl); 80 DISALLOW_COPY_AND_ASSIGN(DriWindowDelegateImpl);
80 }; 81 };
81 82
82 } // namespace ui 83 } // namespace ui
83 84
84 #endif // UI_OZONE_PLATFORM_DRI_DRI_WINDOW_DELEGATE_IMPL_H_ 85 #endif // UI_OZONE_PLATFORM_DRI_DRI_WINDOW_DELEGATE_IMPL_H_
OLDNEW
« no previous file with comments | « ui/ozone/platform/dri/dri_surface.h ('k') | ui/ozone/platform/dri/dri_window_delegate_manager.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698