Rename compositor_tools -> checkerboard

This commit is contained in:
Chinmay Garde 2015-09-09 17:10:08 -07:00
parent 5607ac31e7
commit e0fc9cd69f
4 changed files with 7 additions and 7 deletions

View File

@ -4,6 +4,8 @@
source_set("compositor") {
sources = [
"checkerboard.cc",
"checkerboard.h",
"clip_path_layer.cc",
"clip_path_layer.h",
"clip_rect_layer.cc",
@ -13,8 +15,6 @@ source_set("compositor") {
"color_filter_layer.cc",
"color_filter_layer.h",
"compositor_config.h",
"compositor_tools.cc",
"compositor_tools.h",
"container_layer.cc",
"container_layer.h",
"layer.cc",

View File

@ -2,7 +2,7 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "sky/compositor/compositor_tools.h"
#include "sky/compositor/checkerboard.h"
#include "third_party/skia/include/core/SkShader.h"
namespace sky {

View File

@ -2,8 +2,8 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef SKY_COMPOSITOR_COMPOSITOR_TOOLS_H_
#define SKY_COMPOSITOR_COMPOSITOR_TOOLS_H_
#ifndef SKY_COMPOSITOR_CHECKERBOARD_H_
#define SKY_COMPOSITOR_CHECKERBOARD_H_
#include "third_party/skia/include/core/SkCanvas.h"
@ -15,4 +15,4 @@ void DrawCheckerboard(SkCanvas* canvas, int width, int height);
} // namespace compositor
} // namespace sky
#endif // SKY_COMPOSITOR_COMPOSITOR_TOOLS_H_
#endif // SKY_COMPOSITOR_CHECKERBOARD_H_

View File

@ -3,7 +3,7 @@
// found in the LICENSE file.
#include "sky/compositor/compositor_config.h"
#include "sky/compositor/compositor_tools.h"
#include "sky/compositor/checkerboard.h"
#include "sky/compositor/picture_rasterizer.h"
#include "base/logging.h"
#include "third_party/skia/include/core/SkPicture.h"