| Index: chrome/browser/ui/ash/launcher/desktop_shell_launcher_context_menu.cc
|
| diff --git a/chrome/browser/ui/ash/launcher/desktop_shell_launcher_context_menu.cc b/chrome/browser/ui/ash/launcher/desktop_shell_launcher_context_menu.cc
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..97dabf4ee014e86974ddf091293fe1f6b6c8c953
|
| --- /dev/null
|
| +++ b/chrome/browser/ui/ash/launcher/desktop_shell_launcher_context_menu.cc
|
| @@ -0,0 +1,19 @@
|
| +// Copyright 2016 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/desktop_shell_launcher_context_menu.h"
|
| +
|
| +DesktopShellLauncherContextMenu::DesktopShellLauncherContextMenu(
|
| + ChromeLauncherController* controller,
|
| + const ash::ShelfItem* item,
|
| + ash::Shelf* shelf)
|
| + : LauncherContextMenu(controller, item, shelf) {
|
| + Init();
|
| +}
|
| +
|
| +DesktopShellLauncherContextMenu::~DesktopShellLauncherContextMenu() {}
|
| +
|
| +void DesktopShellLauncherContextMenu::Init() {
|
| + AddAutohideAlignmentWallpaperMenu();
|
| +}
|
|
|