Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #include "chrome/browser/ui/gtk/other_device_menu_views_gtk.h" | |
| 6 | |
| 7 OtherDeviceMenuViews::OtherDeviceMenuViews(ui::SimpleMenuModel* menu_model) | |
| 8 : menu_model_(menu_model) { | |
| 9 } | |
| 10 | |
| 11 OtherDeviceMenuViews::~OtherDeviceMenuViews() { | |
| 12 } | |
| 13 | |
| 14 // TODO(jeremycho): Implement this. | |
| 15 void OtherDeviceMenuViews::ShowMenu(gfx::NativeWindow window, | |
|
Evan Stade
2012/10/24 22:51:34
this class should be named OtherDeviceMenuGtk
"Vi
jeremycho
2012/10/24 23:54:41
Done.
| |
| 16 const gfx::Point& location) { | |
|
Evan Stade
2012/10/24 22:51:34
wrong indent
jeremycho
2012/10/24 23:54:41
Done.
| |
| 17 } | |
| 18 | |
| 19 // OtherDeviceMenuController --------------------------------------------------- | |
| 20 | |
| 21 // static | |
| 22 OtherDeviceMenu* OtherDeviceMenu::Create( | |
| 23 ui::SimpleMenuModel* menu_model) { | |
| 24 return new OtherDeviceMenuViews(menu_model); | |
| 25 } | |
| OLD | NEW |