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