| Index: cc/quads/surface_draw_quad.cc
|
| diff --git a/cc/quads/surface_draw_quad.cc b/cc/quads/surface_draw_quad.cc
|
| deleted file mode 100644
|
| index 5823558ae68db72a102f6d524eafaeb8fa6ddebe..0000000000000000000000000000000000000000
|
| --- a/cc/quads/surface_draw_quad.cc
|
| +++ /dev/null
|
| @@ -1,51 +0,0 @@
|
| -// Copyright 2014 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.
|
| -
|
| -#include "cc/quads/surface_draw_quad.h"
|
| -
|
| -#include "base/logging.h"
|
| -#include "base/trace_event/trace_event_argument.h"
|
| -#include "base/values.h"
|
| -
|
| -namespace cc {
|
| -
|
| -SurfaceDrawQuad::SurfaceDrawQuad() {
|
| -}
|
| -
|
| -void SurfaceDrawQuad::SetNew(const SharedQuadState* shared_quad_state,
|
| - const gfx::Rect& rect,
|
| - const gfx::Rect& visible_rect,
|
| - SurfaceId surface_id) {
|
| - gfx::Rect opaque_rect;
|
| - bool needs_blending = false;
|
| - DrawQuad::SetAll(shared_quad_state, DrawQuad::SURFACE_CONTENT, rect,
|
| - opaque_rect, visible_rect, needs_blending);
|
| - this->surface_id = surface_id;
|
| -}
|
| -
|
| -void SurfaceDrawQuad::SetAll(const SharedQuadState* shared_quad_state,
|
| - const gfx::Rect& rect,
|
| - const gfx::Rect& opaque_rect,
|
| - const gfx::Rect& visible_rect,
|
| - bool needs_blending,
|
| - SurfaceId surface_id) {
|
| - DrawQuad::SetAll(shared_quad_state, DrawQuad::SURFACE_CONTENT, rect,
|
| - opaque_rect, visible_rect, needs_blending);
|
| - this->surface_id = surface_id;
|
| -}
|
| -
|
| -void SurfaceDrawQuad::IterateResources(
|
| - const ResourceIteratorCallback& callback) {}
|
| -
|
| -const SurfaceDrawQuad* SurfaceDrawQuad::MaterialCast(const DrawQuad* quad) {
|
| - DCHECK_EQ(quad->material, DrawQuad::SURFACE_CONTENT);
|
| - return static_cast<const SurfaceDrawQuad*>(quad);
|
| -}
|
| -
|
| -void SurfaceDrawQuad::ExtendValue(base::trace_event::TracedValue* value) const {
|
| - value->SetInteger("surface_id", surface_id.id);
|
| -}
|
| -
|
| -
|
| -} // namespace cc
|
|
|