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

Side by Side Diff: chrome/browser/ui/gtk/dialogs_gtk.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
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 <gtk/gtk.h> 5 #include <gtk/gtk.h>
6 #include <map> 6 #include <map>
7 #include <set> 7 #include <set>
8 8
9 #include "app/gtk_signal.h" 9 #include "app/gtk_signal.h"
10 #include "app/l10n_util.h" 10 #include "app/l10n_util.h"
11 #include "base/file_util.h" 11 #include "base/file_util.h"
(...skipping 566 matching lines...) Expand 10 before | Expand all | Expand 10 after
578 GdkPixbuf* pixbuf = gdk_pixbuf_new_from_file_at_size(filename, kPreviewWidth, 578 GdkPixbuf* pixbuf = gdk_pixbuf_new_from_file_at_size(filename, kPreviewWidth,
579 kPreviewHeight, NULL); 579 kPreviewHeight, NULL);
580 g_free(filename); 580 g_free(filename);
581 if (pixbuf) { 581 if (pixbuf) {
582 gtk_image_set_from_pixbuf(GTK_IMAGE(preview_), pixbuf); 582 gtk_image_set_from_pixbuf(GTK_IMAGE(preview_), pixbuf);
583 g_object_unref(pixbuf); 583 g_object_unref(pixbuf);
584 } 584 }
585 gtk_file_chooser_set_preview_widget_active(GTK_FILE_CHOOSER(chooser), 585 gtk_file_chooser_set_preview_widget_active(GTK_FILE_CHOOSER(chooser),
586 pixbuf ? TRUE : FALSE); 586 pixbuf ? TRUE : FALSE);
587 } 587 }
OLDNEW
« no previous file with comments | « chrome/browser/ui/gtk/custom_drag.cc ('k') | chrome/browser/ui/gtk/download_in_progress_dialog_gtk.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698