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

Unified Diff: cc/test/fake_image_serialization_processor.cc

Issue 2646623002: cc: Remove all blimp code from cc. (Closed)
Patch Set: test build Created 3 years, 11 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
« no previous file with comments | « cc/test/fake_image_serialization_processor.h ('k') | cc/test/fake_layer_tree_host.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/test/fake_image_serialization_processor.cc
diff --git a/cc/test/fake_image_serialization_processor.cc b/cc/test/fake_image_serialization_processor.cc
deleted file mode 100644
index fe08027a60c6d1322b6e6ef32ed59e71535189c0..0000000000000000000000000000000000000000
--- a/cc/test/fake_image_serialization_processor.cc
+++ /dev/null
@@ -1,30 +0,0 @@
-// 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.
-
-#include "cc/test/fake_image_serialization_processor.h"
-
-#include "base/logging.h"
-#include "base/memory/ptr_util.h"
-#include "cc/test/fake_client_picture_cache.h"
-#include "cc/test/fake_engine_picture_cache.h"
-#include "cc/test/picture_cache_model.h"
-
-namespace cc {
-
-FakeImageSerializationProcessor::FakeImageSerializationProcessor()
- : picture_cache_model_(base::WrapUnique(new PictureCacheModel)) {}
-
-FakeImageSerializationProcessor::~FakeImageSerializationProcessor() {}
-
-std::unique_ptr<EnginePictureCache>
-FakeImageSerializationProcessor::CreateEnginePictureCache() {
- return base::MakeUnique<FakeEnginePictureCache>(picture_cache_model_.get());
-}
-
-std::unique_ptr<ClientPictureCache>
-FakeImageSerializationProcessor::CreateClientPictureCache() {
- return base::MakeUnique<FakeClientPictureCache>(picture_cache_model_.get());
-}
-
-} // namespace cc
« no previous file with comments | « cc/test/fake_image_serialization_processor.h ('k') | cc/test/fake_layer_tree_host.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698