| OLD | NEW |
| 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 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/browser_toolbar_gtk.h" | 5 #include "chrome/browser/gtk/browser_toolbar_gtk.h" |
| 6 | 6 |
| 7 #include <gdk/gdkkeysyms.h> | 7 #include <gdk/gdkkeysyms.h> |
| 8 | 8 |
| 9 #include "app/l10n_util.h" |
| 9 #include "app/resource_bundle.h" | 10 #include "app/resource_bundle.h" |
| 10 #include "base/logging.h" | 11 #include "base/logging.h" |
| 11 #include "base/base_paths_linux.h" | 12 #include "base/base_paths_linux.h" |
| 12 #include "base/path_service.h" | 13 #include "base/path_service.h" |
| 13 #include "chrome/app/chrome_dll_resource.h" | 14 #include "chrome/app/chrome_dll_resource.h" |
| 14 #include "chrome/browser/browser.h" | 15 #include "chrome/browser/browser.h" |
| 15 #include "chrome/browser/gtk/back_forward_menu_model_gtk.h" | 16 #include "chrome/browser/gtk/back_forward_menu_model_gtk.h" |
| 16 #include "chrome/browser/gtk/custom_button.h" | 17 #include "chrome/browser/gtk/custom_button.h" |
| 17 #include "chrome/browser/gtk/go_button_gtk.h" | 18 #include "chrome/browser/gtk/go_button_gtk.h" |
| 18 #include "chrome/browser/gtk/gtk_chrome_button.h" | 19 #include "chrome/browser/gtk/gtk_chrome_button.h" |
| 19 #include "chrome/browser/gtk/location_bar_view_gtk.h" | 20 #include "chrome/browser/gtk/location_bar_view_gtk.h" |
| 20 #include "chrome/browser/gtk/nine_box.h" | 21 #include "chrome/browser/gtk/nine_box.h" |
| 21 #include "chrome/browser/gtk/standard_menus.h" | 22 #include "chrome/browser/gtk/standard_menus.h" |
| 22 #include "chrome/browser/gtk/toolbar_star_toggle_gtk.h" | 23 #include "chrome/browser/gtk/toolbar_star_toggle_gtk.h" |
| 23 #include "chrome/browser/net/url_fixer_upper.h" | 24 #include "chrome/browser/net/url_fixer_upper.h" |
| 24 #include "chrome/browser/profile.h" | 25 #include "chrome/browser/profile.h" |
| 25 #include "chrome/common/l10n_util.h" | |
| 26 #include "chrome/common/notification_details.h" | 26 #include "chrome/common/notification_details.h" |
| 27 #include "chrome/common/notification_type.h" | 27 #include "chrome/common/notification_type.h" |
| 28 #include "chrome/common/pref_names.h" | 28 #include "chrome/common/pref_names.h" |
| 29 #include "chrome/common/pref_service.h" | 29 #include "chrome/common/pref_service.h" |
| 30 #include "grit/chromium_strings.h" | 30 #include "grit/chromium_strings.h" |
| 31 #include "grit/generated_resources.h" | 31 #include "grit/generated_resources.h" |
| 32 #include "grit/theme_resources.h" | 32 #include "grit/theme_resources.h" |
| 33 | 33 |
| 34 namespace { | 34 namespace { |
| 35 | 35 |
| (...skipping 414 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 450 IDR_CONTENT_TOP_LEFT_CORNER, | 450 IDR_CONTENT_TOP_LEFT_CORNER, |
| 451 IDR_CONTENT_TOP_CENTER, | 451 IDR_CONTENT_TOP_CENTER, |
| 452 IDR_CONTENT_TOP_RIGHT_CORNER, | 452 IDR_CONTENT_TOP_RIGHT_CORNER, |
| 453 IDR_CONTENT_LEFT_SIDE, | 453 IDR_CONTENT_LEFT_SIDE, |
| 454 0, | 454 0, |
| 455 IDR_CONTENT_RIGHT_SIDE, | 455 IDR_CONTENT_RIGHT_SIDE, |
| 456 IDR_CONTENT_BOTTOM_LEFT_CORNER, | 456 IDR_CONTENT_BOTTOM_LEFT_CORNER, |
| 457 IDR_CONTENT_BOTTOM_CENTER, | 457 IDR_CONTENT_BOTTOM_CENTER, |
| 458 IDR_CONTENT_BOTTOM_RIGHT_CORNER)); | 458 IDR_CONTENT_BOTTOM_RIGHT_CORNER)); |
| 459 } | 459 } |
| OLD | NEW |