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

Unified Diff: blimp/engine/renderer/scheduler_client.h

Issue 2413063002: content/blimp: Set up hooks for enabling LTHRemote in the renderer. (Closed)
Patch Set: gn check 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 side-by-side diff with in-line comments
Download patch
Index: blimp/engine/renderer/scheduler_client.h
diff --git a/blimp/engine/renderer/scheduler_client.h b/blimp/engine/renderer/scheduler_client.h
new file mode 100644
index 0000000000000000000000000000000000000000..4d6d08fe666dcae4ce7b7dc7db049d82b1f44f83
--- /dev/null
+++ b/blimp/engine/renderer/scheduler_client.h
@@ -0,0 +1,23 @@
+// Copyright 2016 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef BLIMP_ENGINE_RENDERER_SCHEDULER_CLIENT_H_
+#define BLIMP_ENGINE_RENDERER_SCHEDULER_CLIENT_H_
+
+#include "base/macros.h"
+
+namespace blimp {
+namespace engine {
+
+class SchedulerClient {
+ public:
+ virtual ~SchedulerClient() {}
+
+ 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.
+};
+
+} // namespace engine
+} // namespace blimp
+
+#endif // BLIMP_ENGINE_RENDERER_SCHEDULER_CLIENT_H_

Powered by Google App Engine
This is Rietveld 408576698