Chromium Code Reviews

Side by Side Diff: chrome/browser/ui/gtk/about_chrome_dialog.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.
Jump to:
View unified diff | | Annotate | Revision Log
« no previous file with comments | « chrome/browser/ui/gtk/about_chrome_dialog.h ('k') | chrome/browser/ui/gtk/accelerators_gtk.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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/about_chrome_dialog.h" 5 #include "chrome/browser/gtk/about_chrome_dialog.h"
6 6
7 #include <gtk/gtk.h> 7 #include <gtk/gtk.h>
8 8
9 #include <string> 9 #include <string>
10 #include <vector> 10 #include <vector>
11 11
(...skipping 272 matching lines...)
284 gtk_util::kContentAreaBorder, 0, 284 gtk_util::kContentAreaBorder, 0,
285 gtk_util::kContentAreaBorder, gtk_util::kContentAreaBorder); 285 gtk_util::kContentAreaBorder, gtk_util::kContentAreaBorder);
286 gtk_container_add(GTK_CONTAINER(alignment), vbox); 286 gtk_container_add(GTK_CONTAINER(alignment), vbox);
287 gtk_box_pack_start(GTK_BOX(content_area), alignment, FALSE, FALSE, 0); 287 gtk_box_pack_start(GTK_BOX(content_area), alignment, FALSE, FALSE, 0);
288 288
289 g_signal_connect(dialog, "response", G_CALLBACK(OnDialogResponse), NULL); 289 g_signal_connect(dialog, "response", G_CALLBACK(OnDialogResponse), NULL);
290 gtk_window_set_resizable(GTK_WINDOW(dialog), FALSE); 290 gtk_window_set_resizable(GTK_WINDOW(dialog), FALSE);
291 gtk_widget_show_all(dialog); 291 gtk_widget_show_all(dialog);
292 gtk_widget_grab_focus(close_button); 292 gtk_widget_grab_focus(close_button);
293 } 293 }
OLDNEW
« no previous file with comments | « chrome/browser/ui/gtk/about_chrome_dialog.h ('k') | chrome/browser/ui/gtk/accelerators_gtk.h » ('j') | no next file with comments »

Powered by Google App Engine