summaryrefslogtreecommitdiffstats
path: root/chrome/browser/ui/gtk/other_device_menu_gtk.cc
blob: 75ebe2f10d85f21c391cf494e01cd164fba98411 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// 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"

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) {
}

// OtherDeviceMenuController ---------------------------------------------------

// static
OtherDeviceMenu* OtherDeviceMenu::Create(ui::SimpleMenuModel* menu_model) {
  return new OtherDeviceMenuGtk(menu_model);
}