Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(30)

Side by Side Diff: chrome/browser/ui/gtk/other_device_menu_view_gtk.cc

Issue 11009013: NTP5: Starting implementation of a native menu for showing other device sessions. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Typo fix. Created 8 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(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_view_gtk.h"
6
7 OtherDeviceMenuView::OtherDeviceMenuView(ui::SimpleMenuModel* menu_model)
8 : menu_model_(menu_model) {
9 }
10
11 OtherDeviceMenuView::~OtherDeviceMenuView() {
12 }
13
14 // TODO(jeremycho): Implement this.
15 void OtherDeviceMenuView::ShowMenu(gfx::NativeWindow window,
16 const gfx::Point& location) {
17 }
18
19 // OtherDeviceMenuController ---------------------------------------------------
20
21 // static
22 OtherDeviceMenu* OtherDeviceMenu::Create(
23 ui::SimpleMenuModel* menu_model) {
24 return new OtherDeviceMenuView(menu_model);
25 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698