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

Side by Side Diff: chrome/browser/ui/gtk/browser_window_gtk.h

Issue 9383005: Add method skeleton for showing website settings. Add commandline flag. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix typo in comment. Created 8 years, 10 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 | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 #ifndef CHROME_BROWSER_UI_GTK_BROWSER_WINDOW_GTK_H_ 5 #ifndef CHROME_BROWSER_UI_GTK_BROWSER_WINDOW_GTK_H_
6 #define CHROME_BROWSER_UI_GTK_BROWSER_WINDOW_GTK_H_ 6 #define CHROME_BROWSER_UI_GTK_BROWSER_WINDOW_GTK_H_
7 #pragma once 7 #pragma once
8 8
9 #include <gtk/gtk.h> 9 #include <gtk/gtk.h>
10 10
(...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after
134 virtual void ShowCollectedCookiesDialog( 134 virtual void ShowCollectedCookiesDialog(
135 TabContentsWrapper* tab_contents) OVERRIDE; 135 TabContentsWrapper* tab_contents) OVERRIDE;
136 virtual void ConfirmBrowserCloseWithPendingDownloads() OVERRIDE; 136 virtual void ConfirmBrowserCloseWithPendingDownloads() OVERRIDE;
137 virtual void UserChangedTheme() OVERRIDE; 137 virtual void UserChangedTheme() OVERRIDE;
138 virtual int GetExtraRenderViewHeight() const OVERRIDE; 138 virtual int GetExtraRenderViewHeight() const OVERRIDE;
139 virtual void WebContentsFocused(content::WebContents* contents) OVERRIDE; 139 virtual void WebContentsFocused(content::WebContents* contents) OVERRIDE;
140 virtual void ShowPageInfo(Profile* profile, 140 virtual void ShowPageInfo(Profile* profile,
141 const GURL& url, 141 const GURL& url,
142 const content::SSLStatus& ssl, 142 const content::SSLStatus& ssl,
143 bool show_history) OVERRIDE; 143 bool show_history) OVERRIDE;
144 virtual void ShowWebsiteSettings(Profile* profile,
145 TabContentsWrapper* tab_contents_wrapper,
146 const GURL& url,
147 const content::SSLStatus& ssl,
148 bool show_history) OVERRIDE;
144 virtual void ShowAppMenu() OVERRIDE; 149 virtual void ShowAppMenu() OVERRIDE;
145 virtual bool PreHandleKeyboardEvent(const NativeWebKeyboardEvent& event, 150 virtual bool PreHandleKeyboardEvent(const NativeWebKeyboardEvent& event,
146 bool* is_keyboard_shortcut) OVERRIDE; 151 bool* is_keyboard_shortcut) OVERRIDE;
147 virtual void HandleKeyboardEvent( 152 virtual void HandleKeyboardEvent(
148 const NativeWebKeyboardEvent& event) OVERRIDE; 153 const NativeWebKeyboardEvent& event) OVERRIDE;
149 virtual void ShowCreateWebAppShortcutsDialog( 154 virtual void ShowCreateWebAppShortcutsDialog(
150 TabContentsWrapper* tab_contents) OVERRIDE; 155 TabContentsWrapper* tab_contents) OVERRIDE;
151 virtual void ShowCreateChromeAppShortcutsDialog( 156 virtual void ShowCreateChromeAppShortcutsDialog(
152 Profile* profile, 157 Profile* profile,
153 const Extension* app) OVERRIDE; 158 const Extension* app) OVERRIDE;
(...skipping 397 matching lines...) Expand 10 before | Expand all | Expand 10 after
551 // autocomplete popup before the results can be read) and the final window 556 // autocomplete popup before the results can be read) and the final window
552 // position is unimportant. 557 // position is unimportant.
553 bool debounce_timer_disabled_; 558 bool debounce_timer_disabled_;
554 559
555 content::NotificationRegistrar registrar_; 560 content::NotificationRegistrar registrar_;
556 561
557 DISALLOW_COPY_AND_ASSIGN(BrowserWindowGtk); 562 DISALLOW_COPY_AND_ASSIGN(BrowserWindowGtk);
558 }; 563 };
559 564
560 #endif // CHROME_BROWSER_UI_GTK_BROWSER_WINDOW_GTK_H_ 565 #endif // CHROME_BROWSER_UI_GTK_BROWSER_WINDOW_GTK_H_
OLDNEW
« no previous file with comments | « chrome/browser/ui/cocoa/location_bar/location_icon_decoration.mm ('k') | chrome/browser/ui/gtk/browser_window_gtk.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698