| Index: chrome/browser/ui/gtk/other_device_menu_view_gtk.cc
|
| diff --git a/chrome/browser/ui/gtk/other_device_menu_view_gtk.cc b/chrome/browser/ui/gtk/other_device_menu_view_gtk.cc
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..b22f511e7fab6890a256635535243f1293982809
|
| --- /dev/null
|
| +++ b/chrome/browser/ui/gtk/other_device_menu_view_gtk.cc
|
| @@ -0,0 +1,25 @@
|
| +// Copyright (c) 2012 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/gtk/other_device_menu_view_gtk.h"
|
| +
|
| +OtherDeviceMenuView::OtherDeviceMenuView(ui::SimpleMenuModel* menu_model)
|
| + : menu_model_(menu_model) {
|
| +}
|
| +
|
| +OtherDeviceMenuView::~OtherDeviceMenuView() {
|
| +}
|
| +
|
| +// TODO(jeremycho): Implement this.
|
| +void OtherDeviceMenuView::ShowMenu(gfx::NativeWindow window,
|
| + const gfx::Point& location) {
|
| +}
|
| +
|
| +// OtherDeviceMenuController ---------------------------------------------------
|
| +
|
| +// static
|
| +OtherDeviceMenu* OtherDeviceMenu::Create(
|
| + ui::SimpleMenuModel* menu_model) {
|
| + return new OtherDeviceMenuView(menu_model);
|
| +}
|
|
|