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

Unified Diff: blimp/engine/renderer/blimp_content_renderer_client.h

Issue 2629743003: Remove all blimp engine code (Closed)
Patch Set: Use consistent comment style in //chrome 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
Index: blimp/engine/renderer/blimp_content_renderer_client.h
diff --git a/blimp/engine/renderer/blimp_content_renderer_client.h b/blimp/engine/renderer/blimp_content_renderer_client.h
deleted file mode 100644
index 0215bd27317098eab36de277b37ad9b884363474..0000000000000000000000000000000000000000
--- a/blimp/engine/renderer/blimp_content_renderer_client.h
+++ /dev/null
@@ -1,47 +0,0 @@
-// Copyright (c) 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.
-
-#ifndef BLIMP_ENGINE_RENDERER_BLIMP_CONTENT_RENDERER_CLIENT_H_
-#define BLIMP_ENGINE_RENDERER_BLIMP_CONTENT_RENDERER_CLIENT_H_
-
-#include <memory>
-
-#include "base/macros.h"
-#include "content/public/renderer/content_renderer_client.h"
-
-namespace web_cache {
-class WebCacheImpl;
-}
-
-namespace blimp {
-namespace engine {
-
-class BlimpContentRendererClient : public content::ContentRendererClient {
- public:
- BlimpContentRendererClient();
- ~BlimpContentRendererClient() override;
-
- // content::ContentRendererClient implementation.
- void RenderThreadStarted() override;
- cc::ImageSerializationProcessor* GetImageSerializationProcessor() override;
- std::unique_ptr<cc::RemoteCompositorBridge> CreateRemoteCompositorBridge(
- content::RemoteProtoChannel* remote_proto_channel,
- scoped_refptr<base::SingleThreadTaskRunner> compositor_main_task_runner)
- override;
-
- private:
- // Manages the process-global web cache.
- std::unique_ptr<web_cache::WebCacheImpl> web_cache_impl_;
-
- // Provides the functionality to serialize images in SkPicture.
- std::unique_ptr<cc::ImageSerializationProcessor>
- image_serialization_processor_;
-
- DISALLOW_COPY_AND_ASSIGN(BlimpContentRendererClient);
-};
-
-} // namespace engine
-} // namespace blimp
-
-#endif // BLIMP_ENGINE_RENDERER_BLIMP_CONTENT_RENDERER_CLIENT_H_
« no previous file with comments | « blimp/engine/mojo/font_fetcher_mojo_impl_unittest.cc ('k') | blimp/engine/renderer/blimp_content_renderer_client.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698