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/cocoa/other_device_menu_cocoa.h" |
| 6 |
| 7 OtherDeviceMenuCocoa::OtherDeviceMenuCocoa(ui::SimpleMenuModel* menu_model) |
| 8 : menu_model_(menu_model) { |
| 9 } |
| 10 |
| 11 OtherDeviceMenuCocoa::~OtherDeviceMenuCocoa() { |
| 12 } |
| 13 |
| 14 // TODO(jeremycho): Implement this. |
| 15 void OtherDeviceMenuCocoa::ShowMenu(gfx::NativeWindow window, |
| 16 const gfx::Point& location) { |
| 17 } |
| 18 |
| 19 // OtherDeviceMenuController --------------------------------------------------- |
| 20 |
| 21 // static |
| 22 OtherDeviceMenu* OtherDeviceMenu::Create(ui::SimpleMenuModel* menu_model) { |
| 23 return new OtherDeviceMenuCocoa(menu_model); |
| 24 } |
OLD | NEW |