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

Unified Diff: chrome/browser/autocomplete/autocomplete_edit_view_gtk.cc

Issue 49035: Linux UI theming:... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 11 years, 9 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
« no previous file with comments | « chrome/app/chrome_dll_main.cc ('k') | chrome/browser/gtk/menu_gtk.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/autocomplete/autocomplete_edit_view_gtk.cc
===================================================================
--- chrome/browser/autocomplete/autocomplete_edit_view_gtk.cc (revision 12503)
+++ chrome/browser/autocomplete/autocomplete_edit_view_gtk.cc (working copy)
@@ -25,9 +25,9 @@
const char kInsecureSchemeColor[] = "#c80000";
const GdkColor kBackgroundColorByLevel[] = {
- GDK_COLOR_RGB(255, 245, 195), // SecurityLevel SECURE: Yellow.
- GDK_COLOR_RGB(255, 255, 255), // SecurityLevel NORMAL: White.
- GDK_COLOR_RGB(255, 255, 255), // SecurityLevel INSECURE: White.
Dean McNamee 2009/03/26 12:33:43 Also, this code matched windows, and is part of Lo
+ GDK_COLOR_RGB(255, 245, 195), // SecurityLevel SECURE. (yellow)
+ gfx::kGdkWhite, // SecurityLevel NORMAL.
+ gfx::kGdkWhite, // SecurityLevel INSECURE.
};
} // namespace
@@ -439,7 +439,7 @@
gboolean AutocompleteEditViewGtk::HandleViewFocusIn() {
model_->OnSetFocus(false);
// TODO(deanm): Some keyword hit business, etc here.
-
+
return FALSE; // Continue propagation.
}
« no previous file with comments | « chrome/app/chrome_dll_main.cc ('k') | chrome/browser/gtk/menu_gtk.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698