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

Side by Side Diff: chrome/browser/ui/views/frame/browser_view.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
« no previous file with comments | « chrome/browser/ui/panels/panel.cc ('k') | chrome/browser/ui/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) 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_VIEWS_FRAME_BROWSER_VIEW_H_ 5 #ifndef CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_VIEW_H_
6 #define CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_VIEW_H_ 6 #define CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_VIEW_H_
7 #pragma once 7 #pragma once
8 8
9 #include <map> 9 #include <map>
10 #include <string> 10 #include <string>
(...skipping 280 matching lines...) Expand 10 before | Expand all | Expand 10 after
291 virtual DownloadShelf* GetDownloadShelf() OVERRIDE; 291 virtual DownloadShelf* GetDownloadShelf() OVERRIDE;
292 virtual void ShowCollectedCookiesDialog(TabContentsWrapper* wrapper) OVERRIDE; 292 virtual void ShowCollectedCookiesDialog(TabContentsWrapper* wrapper) OVERRIDE;
293 virtual void ConfirmBrowserCloseWithPendingDownloads() OVERRIDE; 293 virtual void ConfirmBrowserCloseWithPendingDownloads() OVERRIDE;
294 virtual void UserChangedTheme() OVERRIDE; 294 virtual void UserChangedTheme() OVERRIDE;
295 virtual int GetExtraRenderViewHeight() const OVERRIDE; 295 virtual int GetExtraRenderViewHeight() const OVERRIDE;
296 virtual void WebContentsFocused(content::WebContents* contents) OVERRIDE; 296 virtual void WebContentsFocused(content::WebContents* contents) OVERRIDE;
297 virtual void ShowPageInfo(Profile* profile, 297 virtual void ShowPageInfo(Profile* profile,
298 const GURL& url, 298 const GURL& url,
299 const content::SSLStatus& ssl, 299 const content::SSLStatus& ssl,
300 bool show_history) OVERRIDE; 300 bool show_history) OVERRIDE;
301 virtual void ShowWebsiteSettings(Profile* profile,
302 TabContentsWrapper* tab_contents_wrapper,
303 const GURL& url,
304 const content::SSLStatus& ssl,
305 bool show_history) OVERRIDE;
301 virtual void ShowAppMenu() OVERRIDE; 306 virtual void ShowAppMenu() OVERRIDE;
302 virtual bool PreHandleKeyboardEvent(const NativeWebKeyboardEvent& event, 307 virtual bool PreHandleKeyboardEvent(const NativeWebKeyboardEvent& event,
303 bool* is_keyboard_shortcut) OVERRIDE; 308 bool* is_keyboard_shortcut) OVERRIDE;
304 virtual void HandleKeyboardEvent(const NativeWebKeyboardEvent& event) 309 virtual void HandleKeyboardEvent(const NativeWebKeyboardEvent& event)
305 OVERRIDE; 310 OVERRIDE;
306 virtual void ShowCreateWebAppShortcutsDialog(TabContentsWrapper* tab_contents) 311 virtual void ShowCreateWebAppShortcutsDialog(TabContentsWrapper* tab_contents)
307 OVERRIDE; 312 OVERRIDE;
308 virtual void ShowCreateChromeAppShortcutsDialog( 313 virtual void ShowCreateChromeAppShortcutsDialog(
309 Profile*, const Extension* app) OVERRIDE; 314 Profile*, const Extension* app) OVERRIDE;
310 virtual void Cut() OVERRIDE; 315 virtual void Cut() OVERRIDE;
(...skipping 391 matching lines...) Expand 10 before | Expand all | Expand 10 after
702 bool force_location_bar_focus_; 707 bool force_location_bar_focus_;
703 708
704 PendingFullscreenRequest fullscreen_request_; 709 PendingFullscreenRequest fullscreen_request_;
705 710
706 BrowserWindowMoveObserver* move_observer_; 711 BrowserWindowMoveObserver* move_observer_;
707 712
708 DISALLOW_COPY_AND_ASSIGN(BrowserView); 713 DISALLOW_COPY_AND_ASSIGN(BrowserView);
709 }; 714 };
710 715
711 #endif // CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_VIEW_H_ 716 #endif // CHROME_BROWSER_UI_VIEWS_FRAME_BROWSER_VIEW_H_
OLDNEW
« no previous file with comments | « chrome/browser/ui/panels/panel.cc ('k') | chrome/browser/ui/views/frame/browser_view.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698