| Index: cc/resources/software_rasterizer.cc
|
| diff --git a/cc/resources/software_rasterizer.cc b/cc/resources/software_rasterizer.cc
|
| deleted file mode 100644
|
| index 6060e9e11e4870dd655a905278e95d5235616426..0000000000000000000000000000000000000000
|
| --- a/cc/resources/software_rasterizer.cc
|
| +++ /dev/null
|
| @@ -1,30 +0,0 @@
|
| -// Copyright 2015 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/resources/software_rasterizer.h"
|
| -
|
| -namespace cc {
|
| -
|
| -scoped_ptr<SoftwareRasterizer> SoftwareRasterizer::Create() {
|
| - return make_scoped_ptr<SoftwareRasterizer>(new SoftwareRasterizer());
|
| -}
|
| -
|
| -SoftwareRasterizer::SoftwareRasterizer() {
|
| -}
|
| -
|
| -SoftwareRasterizer::~SoftwareRasterizer() {
|
| -}
|
| -
|
| -PrepareTilesMode SoftwareRasterizer::GetPrepareTilesMode() {
|
| - return PrepareTilesMode::RASTERIZE_PRIORITIZED_TILES;
|
| -}
|
| -
|
| -void SoftwareRasterizer::RasterizeTiles(
|
| - const TileVector& tiles,
|
| - ResourcePool* resource_pool,
|
| - ResourceFormat resource_format,
|
| - const UpdateTileDrawInfoCallback& update_tile_draw_info) {
|
| -}
|
| -
|
| -} // namespace cc
|
|
|