diff options
author | benwells <benwells@chromium.org> | 2015-08-14 13:28:09 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2015-08-14 20:28:46 +0000 |
commit | 557e70f4371fce0f9bf5a6279237ba1723b984b2 (patch) | |
tree | da52c300d33cb6a5e1e7f4201e86c6b4145f58ec /extensions/shell | |
parent | 2a717ff2aa9fd0c27926fb8c8250633e44f91594 (diff) | |
download | chromium_src-557e70f4371fce0f9bf5a6279237ba1723b984b2.zip chromium_src-557e70f4371fce0f9bf5a6279237ba1723b984b2.tar.gz chromium_src-557e70f4371fce0f9bf5a6279237ba1723b984b2.tar.bz2 |
Remove menu from ash / Windows shelf / taskbar to install ephemeral app.
BUG=517735
Review URL: https://codereview.chromium.org/1290303002
Cr-Commit-Position: refs/heads/master@{#343476}
Diffstat (limited to 'extensions/shell')
-rw-r--r-- | extensions/shell/browser/shell_native_app_window.cc | 4 | ||||
-rw-r--r-- | extensions/shell/browser/shell_native_app_window.h | 1 |
2 files changed, 0 insertions, 5 deletions
diff --git a/extensions/shell/browser/shell_native_app_window.cc b/extensions/shell/browser/shell_native_app_window.cc index b5eb4f1..9113556 100644 --- a/extensions/shell/browser/shell_native_app_window.cc +++ b/extensions/shell/browser/shell_native_app_window.cc @@ -174,10 +174,6 @@ void ShellNativeAppWindow::HideWithApp() { NOTIMPLEMENTED(); } -void ShellNativeAppWindow::UpdateShelfMenu() { - // app_shell has no shelf, dock, or system-tray to update. -} - gfx::Size ShellNativeAppWindow::GetContentMinimumSize() const { // Content fills the desktop and cannot be resized. return DesktopController::instance()->GetWindowSize(); diff --git a/extensions/shell/browser/shell_native_app_window.h b/extensions/shell/browser/shell_native_app_window.h index 42b0dd4..2dabbfe 100644 --- a/extensions/shell/browser/shell_native_app_window.h +++ b/extensions/shell/browser/shell_native_app_window.h @@ -62,7 +62,6 @@ class ShellNativeAppWindow : public NativeAppWindow { gfx::Insets GetFrameInsets() const override; void ShowWithApp() override; void HideWithApp() override; - void UpdateShelfMenu() override; gfx::Size GetContentMinimumSize() const override; gfx::Size GetContentMaximumSize() const override; void SetContentSizeConstraints(const gfx::Size& min_size, |