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

Side by Side Diff: chrome/browser/gtk/page_info_window_gtk.cc

Issue 3175037: Add a flag for the showing the Page Info dialog as a bubble. This adds stubs for all platforms. (Closed) Base URL: http://src.chromium.org/git/chromium.git
Patch Set: gyp change Created 10 years, 4 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 unified diff | Download patch
« no previous file with comments | « chrome/browser/gtk/browser_window_gtk.cc ('k') | chrome/browser/views/frame/browser_view.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 201 matching lines...) Expand 10 before | Expand all | Expand 10 after
212 if (iter != g_page_info_window_map.end()) { 212 if (iter != g_page_info_window_map.end()) {
213 gtk_window_present(GTK_WINDOW(iter->second->widget())); 213 gtk_window_present(GTK_WINDOW(iter->second->widget()));
214 return; 214 return;
215 } 215 }
216 216
217 PageInfoWindowGtk* page_info_window = 217 PageInfoWindowGtk* page_info_window =
218 new PageInfoWindowGtk(parent, profile, url, ssl, show_history); 218 new PageInfoWindowGtk(parent, profile, url, ssl, show_history);
219 page_info_window->Show(); 219 page_info_window->Show();
220 } 220 }
221 221
222 void ShowPageInfoBubble(gfx::NativeWindow parent,
223 Profile* profile,
224 const GURL& url,
225 const NavigationEntry::SSLStatus& ssl,
226 bool show_history) {
227 NOTIMPLEMENTED();
228 }
229
222 } // namespace browser 230 } // namespace browser
OLDNEW
« no previous file with comments | « chrome/browser/gtk/browser_window_gtk.cc ('k') | chrome/browser/views/frame/browser_view.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698