| 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 <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 "app/resource_bundle.h" | 10 #include "app/resource_bundle.h" |
| (...skipping 202 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 213 if (iter != g_page_info_window_map.end()) { | 213 if (iter != g_page_info_window_map.end()) { |
| 214 gtk_window_present(GTK_WINDOW(iter->second->widget())); | 214 gtk_window_present(GTK_WINDOW(iter->second->widget())); |
| 215 return; | 215 return; |
| 216 } | 216 } |
| 217 | 217 |
| 218 PageInfoWindowGtk* page_info_window = | 218 PageInfoWindowGtk* page_info_window = |
| 219 new PageInfoWindowGtk(parent, profile, url, ssl, show_history); | 219 new PageInfoWindowGtk(parent, profile, url, ssl, show_history); |
| 220 page_info_window->Show(); | 220 page_info_window->Show(); |
| 221 } | 221 } |
| 222 | 222 |
| 223 void ShowPageInfoBubble(gfx::NativeWindow parent, | |
| 224 Profile* profile, | |
| 225 const GURL& url, | |
| 226 const NavigationEntry::SSLStatus& ssl, | |
| 227 bool show_history) { | |
| 228 NOTIMPLEMENTED(); | |
| 229 } | |
| 230 | |
| 231 } // namespace browser | 223 } // namespace browser |
| OLD | NEW |