OLD | NEW |
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 #include "ui/events/platform/platform_event_source.h" | 5 #ifndef UI_OZONE_DEMO_RENDERER_H_ |
| 6 #define UI_OZONE_DEMO_RENDERER_H_ |
6 | 7 |
7 namespace ui { | 8 namespace ui { |
8 | 9 |
9 scoped_ptr<PlatformEventSource> PlatformEventSource::CreateDefault() { | 10 class Renderer { |
10 return nullptr; | 11 public: |
11 } | 12 virtual ~Renderer() {} |
| 13 |
| 14 virtual bool Initialize() = 0; |
| 15 }; |
12 | 16 |
13 } // namespace ui | 17 } // namespace ui |
| 18 |
| 19 #endif // UI_OZONE_DEMO_RENDERER_H_ |
OLD | NEW |