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

Unified Diff: components/bitmap_uploader/bitmap_uploader.h

Issue 2162693002: Move bitmap uploader to ui service client lib (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: . Created 4 years, 5 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 | « components/bitmap_uploader/OWNERS ('k') | components/bitmap_uploader/bitmap_uploader.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/bitmap_uploader/bitmap_uploader.h
diff --git a/components/bitmap_uploader/bitmap_uploader.h b/components/bitmap_uploader/bitmap_uploader.h
deleted file mode 100644
index 622c131fd4180e8d354d01c5f862a9dfacb7cf31..0000000000000000000000000000000000000000
--- a/components/bitmap_uploader/bitmap_uploader.h
+++ /dev/null
@@ -1,94 +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.
-
-#ifndef COMPONENTS_BITMAP_UPLOADER_BITMAP_UPLOADER_H_
-#define COMPONENTS_BITMAP_UPLOADER_BITMAP_UPLOADER_H_
-
-#include <stdint.h>
-
-#include <memory>
-
-#include "base/compiler_specific.h"
-#include "base/containers/hash_tables.h"
-#include "base/macros.h"
-#include "components/bitmap_uploader/bitmap_uploader_export.h"
-#include "gpu/GLES2/gl2chromium.h"
-#include "gpu/GLES2/gl2extchromium.h"
-#include "services/ui/public/cpp/window_surface.h"
-#include "services/ui/public/cpp/window_surface_client.h"
-#include "services/ui/public/interfaces/surface.mojom.h"
-
-namespace ui {
-class GLES2Context;
-}
-
-namespace shell {
-class Connector;
-}
-
-namespace bitmap_uploader {
-
-BITMAP_UPLOADER_EXPORT extern const char kBitmapUploaderForAcceleratedWidget[];
-
-// BitmapUploader is useful if you want to draw a bitmap or color in a
-// ui::Window.
-class BITMAP_UPLOADER_EXPORT BitmapUploader
- : public NON_EXPORTED_BASE(ui::WindowSurfaceClient) {
- public:
- explicit BitmapUploader(ui::Window* window);
- ~BitmapUploader() override;
-
- void Init(shell::Connector* connector);
-
- // Sets the color which is RGBA.
- void SetColor(uint32_t color);
-
- enum Format {
- RGBA, // Pixel layout on Android.
- BGRA, // Pixel layout everywhere else.
- };
-
- // Sets a bitmap.
- void SetBitmap(int width,
- int height,
- std::unique_ptr<std::vector<unsigned char>> data,
- Format format);
-
- private:
- void Upload();
-
- uint32_t BindTextureForSize(const gfx::Size& size);
-
- uint32_t TextureFormat() const {
- return format_ == BGRA ? GL_BGRA_EXT : GL_RGBA;
- }
-
- void SetIdNamespace(uint32_t id_namespace);
-
- // WindowSurfaceClient implementation.
- void OnResourcesReturned(
- ui::WindowSurface* surface,
- mojo::Array<cc::ReturnedResource> resources) override;
-
- ui::Window* window_;
- std::unique_ptr<ui::WindowSurface> surface_;
- // This may be null if there is an error contacting mus/initializing. We
- // assume we'll be shutting down soon and do nothing in this case.
- std::unique_ptr<ui::GLES2Context> gles2_context_;
-
- uint32_t color_;
- int width_;
- int height_;
- Format format_;
- std::unique_ptr<std::vector<unsigned char>> bitmap_;
- uint32_t next_resource_id_;
- uint32_t id_namespace_;
- base::hash_map<uint32_t, uint32_t> resource_to_texture_id_map_;
-
- DISALLOW_COPY_AND_ASSIGN(BitmapUploader);
-};
-
-} // namespace bitmap_uploader
-
-#endif // COMPONENTS_BITMAP_UPLOADER_BITMAP_UPLAODER_H_
« no previous file with comments | « components/bitmap_uploader/OWNERS ('k') | components/bitmap_uploader/bitmap_uploader.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698