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

Unified Diff: cc/delegated_compositor_frame.cc

Issue 11316128: Send compositor frame IPC with metadata. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Clean up and rebase to 173167 Created 8 years 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: cc/delegated_compositor_frame.cc
diff --git a/cc/renderer.cc b/cc/delegated_compositor_frame.cc
similarity index 54%
copy from cc/renderer.cc
copy to cc/delegated_compositor_frame.cc
index 50f07a34eef88ecca63f292a29237bf0b5271f2b..c1a23d557d3a4d152d7033af3537f30126f9a454 100644
--- a/cc/renderer.cc
+++ b/cc/delegated_compositor_frame.cc
@@ -2,18 +2,14 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#include "cc/renderer.h"
+#include "cc/delegated_compositor_frame.h"
namespace cc {
-bool Renderer::haveCachedResourcesForRenderPassId(RenderPass::Id) const
-{
- return false;
+DelegatedCompositorFrame::DelegatedCompositorFrame() {
+ type = DELEGATED;
}
-bool Renderer::isContextLost()
-{
- return false;
-}
+DelegatedCompositorFrame::~DelegatedCompositorFrame() {}
} // namespace cc

Powered by Google App Engine
This is Rietveld 408576698