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

Unified Diff: chrome/browser/ui/ash/launcher/arc_app_window.cc

Issue 2894443002: arc: Set custom icon in shelf for ARC apps. (Closed)
Patch Set: rebase Created 3 years, 7 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: chrome/browser/ui/ash/launcher/arc_app_window.cc
diff --git a/chrome/browser/ui/ash/launcher/arc_app_window.cc b/chrome/browser/ui/ash/launcher/arc_app_window.cc
new file mode 100644
index 0000000000000000000000000000000000000000..d47bf54ef72a1e9207b9945d97a8d38faac75b99
--- /dev/null
+++ b/chrome/browser/ui/ash/launcher/arc_app_window.cc
@@ -0,0 +1,177 @@
+// Copyright 2017 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 "chrome/browser/ui/ash/launcher/arc_app_window.h"
+
+#include "base/strings/utf_string_conversions.h"
+#include "chrome/browser/ui/app_list/arc/arc_app_icon.h"
+#include "chrome/browser/ui/app_list/arc/arc_app_utils.h"
+#include "chrome/browser/ui/ash/launcher/arc_app_window_launcher_controller.h"
+#include "chrome/browser/ui/ash/launcher/arc_app_window_launcher_item_controller.h"
+#include "components/exo/shell_surface.h"
+#include "extensions/common/constants.h"
+#include "ui/aura/window.h"
+#include "ui/gfx/codec/png_codec.h"
+#include "ui/gfx/image/image_skia_operations.h"
+#include "ui/views/widget/widget.h"
+
+ArcAppWindow::ArcAppWindow(int task_id,
+ const arc::ArcAppShelfId& app_shelf_id,
+ views::Widget* widget,
+ ArcAppWindowLauncherController* owner)
+ : task_id_(task_id),
+ app_shelf_id_(app_shelf_id),
+ widget_(widget),
+ owner_(owner) {}
+
+ArcAppWindow::~ArcAppWindow() {
+ ImageDecoder::Cancel(this);
+}
+
+void ArcAppWindow::SetController(
+ ArcAppWindowLauncherItemController* controller) {
+ DCHECK(!controller_ || !controller);
+ controller_ = controller;
+ if (controller_)
+ controller_->UpdateLauncherItem();
+}
+
+void ArcAppWindow::SetFullscreenMode(FullScreenMode mode) {
+ DCHECK(mode != FullScreenMode::NOT_DEFINED);
+ fullscreen_mode_ = mode;
+}
+
+void ArcAppWindow::SetDescription(
+ const std::string& title,
+ const std::vector<uint8_t>& unsafe_icon_data_png) {
+ if (!title.empty())
+ GetNativeWindow()->SetTitle(base::UTF8ToUTF16(title));
+ ImageDecoder::Cancel(this);
+ if (unsafe_icon_data_png.empty()) {
+ ResetIcon();
+ return;
+ }
+
+ if (ArcAppIcon::IsSafeDecodingDisabledForTesting()) {
+ SkBitmap bitmap;
+ if (gfx::PNGCodec::Decode(&unsafe_icon_data_png[0],
+ unsafe_icon_data_png.size(), &bitmap)) {
+ OnImageDecoded(bitmap);
+ } else {
+ OnDecodeImageFailed();
+ }
+ } else {
+ ImageDecoder::Start(this, unsafe_icon_data_png);
+ }
+}
+
+bool ArcAppWindow::IsActive() const {
+ return widget_->IsActive() && owner_->active_task_id() == task_id_;
+}
+
+bool ArcAppWindow::IsMaximized() const {
+ NOTREACHED();
+ return false;
+}
+
+bool ArcAppWindow::IsMinimized() const {
+ NOTREACHED();
+ return false;
+}
+
+bool ArcAppWindow::IsFullscreen() const {
+ NOTREACHED();
+ return false;
+}
+
+gfx::NativeWindow ArcAppWindow::GetNativeWindow() const {
+ return widget_->GetNativeWindow();
+}
+
+gfx::Rect ArcAppWindow::GetRestoredBounds() const {
+ NOTREACHED();
+ return gfx::Rect();
+}
+
+ui::WindowShowState ArcAppWindow::GetRestoredState() const {
+ NOTREACHED();
+ return ui::SHOW_STATE_NORMAL;
+}
+
+gfx::Rect ArcAppWindow::GetBounds() const {
+ NOTREACHED();
+ return gfx::Rect();
+}
+
+void ArcAppWindow::Show() {
+ widget_->Show();
+}
+
+void ArcAppWindow::ShowInactive() {
+ NOTREACHED();
+}
+
+void ArcAppWindow::Hide() {
+ NOTREACHED();
+}
+
+void ArcAppWindow::Close() {
+ arc::CloseTask(task_id_);
+}
+
+void ArcAppWindow::Activate() {
+ widget_->Activate();
+}
+
+void ArcAppWindow::Deactivate() {
+ NOTREACHED();
+}
+
+void ArcAppWindow::Maximize() {
+ NOTREACHED();
+}
+
+void ArcAppWindow::Minimize() {
+ widget_->Minimize();
+}
+
+void ArcAppWindow::Restore() {
+ NOTREACHED();
+}
+
+void ArcAppWindow::SetBounds(const gfx::Rect& bounds) {
+ NOTREACHED();
+}
+
+void ArcAppWindow::FlashFrame(bool flash) {
+ NOTREACHED();
+}
+
+bool ArcAppWindow::IsAlwaysOnTop() const {
+ NOTREACHED();
+ return false;
+}
+
+void ArcAppWindow::SetAlwaysOnTop(bool always_on_top) {
+ NOTREACHED();
+}
+
+void ArcAppWindow::ResetIcon() {
+ if (icon_.isNull())
+ return;
+ icon_ = gfx::ImageSkia();
+ if (controller_)
+ controller_->UpdateLauncherItem();
+}
+
+void ArcAppWindow::OnImageDecoded(const SkBitmap& decoded_image) {
+ // TODO(khmel): Use aura::Window property http://crbug.com/724292
+ icon_ = gfx::ImageSkiaOperations::CreateResizedImage(
+ gfx::ImageSkia(gfx::ImageSkiaRep(decoded_image, 1.0f)),
+ skia::ImageOperations::RESIZE_BEST,
+ gfx::Size(extension_misc::EXTENSION_ICON_SMALL,
+ extension_misc::EXTENSION_ICON_SMALL));
+ if (controller_)
+ controller_->UpdateLauncherItem();
+}
« no previous file with comments | « chrome/browser/ui/ash/launcher/arc_app_window.h ('k') | chrome/browser/ui/ash/launcher/arc_app_window_launcher_controller.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698