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

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

Issue 6251001: Move chrome/browser/gtk/ to chrome/browser/ui/gtk/... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 11 months 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
« no previous file with comments | « chrome/browser/ui/gtk/gtk_custom_menu.h ('k') | chrome/browser/ui/gtk/gtk_custom_menu_item.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Property Changes:
Added: svn:eol-style
+ LF
OLDNEW
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "chrome/browser/gtk/gtk_custom_menu.h" 5 #include "chrome/browser/gtk/gtk_custom_menu.h"
6 6
7 #include "chrome/browser/gtk/gtk_custom_menu_item.h" 7 #include "chrome/browser/gtk/gtk_custom_menu_item.h"
8 8
9 G_DEFINE_TYPE(GtkCustomMenu, gtk_custom_menu, GTK_TYPE_MENU) 9 G_DEFINE_TYPE(GtkCustomMenu, gtk_custom_menu, GTK_TYPE_MENU)
10 10
11 // Stolen directly from gtkmenushell.c. I'd love to call the library version 11 // Stolen directly from gtkmenushell.c. I'd love to call the library version
(...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after
141 widget_class->button_press_event = gtk_custom_menu_button_press; 141 widget_class->button_press_event = gtk_custom_menu_button_press;
142 widget_class->button_release_event = gtk_custom_menu_button_release; 142 widget_class->button_release_event = gtk_custom_menu_button_release;
143 widget_class->motion_notify_event = gtk_custom_menu_motion_notify; 143 widget_class->motion_notify_event = gtk_custom_menu_motion_notify;
144 144
145 menu_shell_class->move_current = gtk_custom_menu_move_current; 145 menu_shell_class->move_current = gtk_custom_menu_move_current;
146 } 146 }
147 147
148 GtkWidget* gtk_custom_menu_new() { 148 GtkWidget* gtk_custom_menu_new() {
149 return GTK_WIDGET(g_object_new(GTK_TYPE_CUSTOM_MENU, NULL)); 149 return GTK_WIDGET(g_object_new(GTK_TYPE_CUSTOM_MENU, NULL));
150 } 150 }
OLDNEW
« no previous file with comments | « chrome/browser/ui/gtk/gtk_custom_menu.h ('k') | chrome/browser/ui/gtk/gtk_custom_menu_item.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698