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

Side by Side Diff: blimp/engine/renderer/scheduler_client.h

Issue 2413063002: content/blimp: Set up hooks for enabling LTHRemote in the renderer. (Closed)
Patch Set: Rebase Created 4 years, 2 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
(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;
18 };
19
20 } // namespace engine
21 } // namespace blimp
22
23 #endif // BLIMP_ENGINE_RENDERER_SCHEDULER_CLIENT_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698