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

Unified Diff: blimp/client/compositor/blimp_compositor_android.h

Issue 1636163002: Restructure contents of blimp/client. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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 | « blimp/client/compositor/blimp_compositor.cc ('k') | blimp/client/compositor/blimp_compositor_android.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: blimp/client/compositor/blimp_compositor_android.h
diff --git a/blimp/client/compositor/blimp_compositor_android.h b/blimp/client/compositor/blimp_compositor_android.h
deleted file mode 100644
index 20bc1a7b2ec9ee8f0cb1610f465bc7db8b7b8055..0000000000000000000000000000000000000000
--- a/blimp/client/compositor/blimp_compositor_android.h
+++ /dev/null
@@ -1,75 +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 BLIMP_CLIENT_COMPOSITOR_BLIMP_COMPOSITOR_ANDROID_H_
-#define BLIMP_CLIENT_COMPOSITOR_BLIMP_COMPOSITOR_ANDROID_H_
-
-#include "base/android/jni_android.h"
-#include "base/macros.h"
-#include "blimp/client/compositor/blimp_compositor.h"
-#include "ui/gfx/geometry/size.h"
-#include "ui/gfx/native_widget_types.h"
-
-namespace base {
-class SingleThreadTaskRunner;
-class Thread;
-}
-
-namespace cc {
-class LayerTreeHost;
-}
-
-namespace blimp {
-namespace client {
-
-class RenderWidgetFeature;
-
-// An Android specific version of the BlimpCompositor. This class builds a
-// gfx::AcceleratedWidget out of an Android SurfaceView's surface.
-class BlimpCompositorAndroid : public BlimpCompositor {
- public:
- // |real_size| is the total display area including system decorations (see
- // android.view.Display.getRealSize()). |size| is the total display
- // area not including system decorations (see android.view.Display.getSize()).
- // |dp_to_px| is the scale factor that is required to convert from dp device
- // pixels) to px.
- static scoped_ptr<BlimpCompositorAndroid> Create(
- const gfx::Size& real_size,
- const gfx::Size& size,
- float dp_to_px,
- RenderWidgetFeature* render_widget_feature);
-
- ~BlimpCompositorAndroid() override;
-
- protected:
- // |size| is the size of the display. |real_size_supported| determines
- // whether or not this size is the real display size or the display size
- // not including the system decorations. |dp_to_px| is the scale factor that
- // is required to convert from dp (device pixels) to px.
- BlimpCompositorAndroid(const gfx::Size& size,
- bool real_size_supported,
- float dp_to_px,
- RenderWidgetFeature* render_widget_feature);
-
- // BlimpCompositor implementation.
- void GenerateLayerTreeSettings(cc::LayerTreeSettings* settings);
-
- private:
- // Used to determine tile size for the compositor's rastered tiles. For a
- // device of width X height |portrait_width_| will be min(width, height) and
- // |landscape_width_| will be max(width, height).
- int portrait_width_;
- int landscape_width_;
-
- // True if the |portrait_width_| and |landscape_width_| represent the device's
- // physical dimensions, including any area occupied by system decorations.
- bool real_size_supported_;
-
- DISALLOW_COPY_AND_ASSIGN(BlimpCompositorAndroid);
-};
-
-} // namespace client
-} // namespace blimp
-
-#endif // BLIMP_CLIENT_COMPOSITOR_BLIMP_COMPOSITOR_ANDROID_H_
« no previous file with comments | « blimp/client/compositor/blimp_compositor.cc ('k') | blimp/client/compositor/blimp_compositor_android.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698