Chromium Code Reviews| 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. |
| } |