OLD | NEW |
1 // Copyright (c) 2011 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 | 6 |
7 #include "build/build_config.h" | 7 #include "build/build_config.h" |
8 | 8 |
9 #include "app/l10n_util.h" | 9 #include "app/l10n_util.h" |
10 #include "base/i18n/rtl.h" | 10 #include "base/i18n/rtl.h" |
11 #include "base/utf_string_conversions.h" | 11 #include "base/utf_string_conversions.h" |
12 #include "chrome/browser/browser_list.h" | 12 #include "chrome/browser/browser_list.h" |
13 #include "chrome/browser/certificate_viewer.h" | 13 #include "chrome/browser/certificate_viewer.h" |
14 #include "chrome/browser/google/google_util.h" | 14 #include "chrome/browser/google/google_util.h" |
15 #include "chrome/browser/gtk/browser_toolbar_gtk.h" | |
16 #include "chrome/browser/gtk/browser_window_gtk.h" | |
17 #include "chrome/browser/gtk/gtk_chrome_link_button.h" | |
18 #include "chrome/browser/gtk/gtk_theme_provider.h" | |
19 #include "chrome/browser/gtk/gtk_util.h" | |
20 #include "chrome/browser/gtk/info_bubble_gtk.h" | |
21 #include "chrome/browser/gtk/location_bar_view_gtk.h" | |
22 #include "chrome/browser/page_info_model.h" | 15 #include "chrome/browser/page_info_model.h" |
23 #include "chrome/browser/page_info_window.h" | 16 #include "chrome/browser/page_info_window.h" |
| 17 #include "chrome/browser/ui/gtk/browser_toolbar_gtk.h" |
| 18 #include "chrome/browser/ui/gtk/browser_window_gtk.h" |
| 19 #include "chrome/browser/ui/gtk/gtk_chrome_link_button.h" |
| 20 #include "chrome/browser/ui/gtk/gtk_theme_provider.h" |
| 21 #include "chrome/browser/ui/gtk/gtk_util.h" |
| 22 #include "chrome/browser/ui/gtk/info_bubble_gtk.h" |
| 23 #include "chrome/browser/ui/gtk/location_bar_view_gtk.h" |
24 #include "chrome/common/notification_observer.h" | 24 #include "chrome/common/notification_observer.h" |
25 #include "chrome/common/notification_registrar.h" | 25 #include "chrome/common/notification_registrar.h" |
26 #include "chrome/common/notification_service.h" | 26 #include "chrome/common/notification_service.h" |
27 #include "chrome/common/url_constants.h" | 27 #include "chrome/common/url_constants.h" |
28 #include "googleurl/src/gurl.h" | 28 #include "googleurl/src/gurl.h" |
29 #include "grit/generated_resources.h" | 29 #include "grit/generated_resources.h" |
30 #include "grit/locale_settings.h" | 30 #include "grit/locale_settings.h" |
31 | 31 |
32 class Profile; | 32 class Profile; |
33 | 33 |
(...skipping 251 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
285 | 285 |
286 void ShowPageInfoBubble(gfx::NativeWindow parent, | 286 void ShowPageInfoBubble(gfx::NativeWindow parent, |
287 Profile* profile, | 287 Profile* profile, |
288 const GURL& url, | 288 const GURL& url, |
289 const NavigationEntry::SSLStatus& ssl, | 289 const NavigationEntry::SSLStatus& ssl, |
290 bool show_history) { | 290 bool show_history) { |
291 new PageInfoBubbleGtk(parent, profile, url, ssl, show_history); | 291 new PageInfoBubbleGtk(parent, profile, url, ssl, show_history); |
292 } | 292 } |
293 | 293 |
294 } // namespace browser | 294 } // namespace browser |
OLD | NEW |