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

Unified Diff: views/widget/widget_gtk.cc

Issue 177026: Make the views bookmark bubble work on GTK.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 4 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 side-by-side diff with in-line comments
Download patch
Index: views/widget/widget_gtk.cc
===================================================================
--- views/widget/widget_gtk.cc (revision 24784)
+++ views/widget/widget_gtk.cc (working copy)
@@ -661,7 +661,7 @@
// view here as that is done by OnPaint.
DCHECK(transparent_);
int width, height;
- gtk_window_get_size (GTK_WINDOW (widget), &width, &height);
+ gtk_window_get_size(GTK_WINDOW (widget), &width, &height);
cairo_t* cr = gdk_cairo_create(widget->window);
cairo_set_operator (cr, CAIRO_OPERATOR_SOURCE);
cairo_set_source_rgba(cr, 0, 0, 0, 0);

Powered by Google App Engine
This is Rietveld 408576698