OLD | NEW |
---|---|
(Empty) | |
1 // Copyright 2016 The Chromium Authors. All rights reserved. | |
2 // Use of this source code is governed by a BSD-style license that can be | |
3 // found in the LICENSE file. | |
4 | |
5 #ifndef BLIMP_ENGINE_RENDERER_SCHEDULER_CLIENT_H_ | |
6 #define BLIMP_ENGINE_RENDERER_SCHEDULER_CLIENT_H_ | |
7 | |
8 #include "base/macros.h" | |
9 | |
10 namespace blimp { | |
11 namespace engine { | |
12 | |
13 class SchedulerClient { | |
14 public: | |
15 virtual ~SchedulerClient() {} | |
16 | |
17 virtual void StartMainFrameUpdate() = 0; | |
Wez
2016/10/13 16:53:52
Please document what this call means, and what the
Khushal
2016/10/13 18:47:27
Done.
| |
18 }; | |
19 | |
20 } // namespace engine | |
21 } // namespace blimp | |
22 | |
23 #endif // BLIMP_ENGINE_RENDERER_SCHEDULER_CLIENT_H_ | |
OLD | NEW |