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

Side by Side Diff: ui/ozone/demo/renderer.h

Issue 1285183008: Ozone integration. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: add missing license header Created 5 years, 4 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
« no previous file with comments | « ui/ozone/demo/ozone_demo.cc ('k') | ui/ozone/demo/renderer_base.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 #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_
OLDNEW
« no previous file with comments | « ui/ozone/demo/ozone_demo.cc ('k') | ui/ozone/demo/renderer_base.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698