Index: chrome/browser/ui/cocoa/other_device_menu_cocoa.mm |
diff --git a/chrome/browser/ui/cocoa/other_device_menu_cocoa.mm b/chrome/browser/ui/cocoa/other_device_menu_cocoa.mm |
new file mode 100644 |
index 0000000000000000000000000000000000000000..1286e73e5923bac37d5214fb94644b8129a6dde8 |
--- /dev/null |
+++ b/chrome/browser/ui/cocoa/other_device_menu_cocoa.mm |
@@ -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/cocoa/other_device_menu_cocoa.h" |
+ |
+// static |
+OtherDeviceMenu* OtherDeviceMenu::Create(ui::SimpleMenuModel* menu_model) { |
+ return new OtherDeviceMenuCocoa(menu_model); |
+} |
+ |
+OtherDeviceMenuCocoa::OtherDeviceMenuCocoa(ui::SimpleMenuModel* menu_model) |
+ : menu_model_(menu_model) { |
+} |
+ |
+OtherDeviceMenuCocoa::~OtherDeviceMenuCocoa() { |
+} |
+ |
+// TODO(jeremycho): Implement this. |
+void OtherDeviceMenuCocoa::ShowMenu(gfx::NativeWindow window, |
+ const gfx::Point& location) { |
+} |