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

Side by Side Diff: chrome/test/base/test_browser_window.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/common/chrome_switches.cc ('k') | no next file » | 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_TEST_BASE_TEST_BROWSER_WINDOW_H_ 5 #ifndef CHROME_TEST_BASE_TEST_BROWSER_WINDOW_H_
6 #define CHROME_TEST_BASE_TEST_BROWSER_WINDOW_H_ 6 #define CHROME_TEST_BASE_TEST_BROWSER_WINDOW_H_
7 #pragma once 7 #pragma once
8 8
9 #include "base/basictypes.h" 9 #include "base/basictypes.h"
10 #include "base/compiler_specific.h" 10 #include "base/compiler_specific.h"
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after
96 virtual void ShowCollectedCookiesDialog( 96 virtual void ShowCollectedCookiesDialog(
97 TabContentsWrapper* wrapper) OVERRIDE {} 97 TabContentsWrapper* wrapper) OVERRIDE {}
98 virtual void ConfirmBrowserCloseWithPendingDownloads() OVERRIDE {} 98 virtual void ConfirmBrowserCloseWithPendingDownloads() OVERRIDE {}
99 virtual void UserChangedTheme() OVERRIDE {} 99 virtual void UserChangedTheme() OVERRIDE {}
100 virtual int GetExtraRenderViewHeight() const OVERRIDE; 100 virtual int GetExtraRenderViewHeight() const OVERRIDE;
101 virtual void WebContentsFocused(content::WebContents* contents) OVERRIDE {} 101 virtual void WebContentsFocused(content::WebContents* contents) OVERRIDE {}
102 virtual void ShowPageInfo(Profile* profile, 102 virtual void ShowPageInfo(Profile* profile,
103 const GURL& url, 103 const GURL& url,
104 const content::SSLStatus& ssl, 104 const content::SSLStatus& ssl,
105 bool show_history) OVERRIDE {} 105 bool show_history) OVERRIDE {}
106 virtual void ShowWebsiteSettings(Profile* profile,
107 TabContentsWrapper* wrapper,
108 const GURL& url,
109 const content::SSLStatus& ssl,
110 bool show_history) OVERRIDE {}
106 virtual void Cut() OVERRIDE {} 111 virtual void Cut() OVERRIDE {}
107 virtual void Copy() OVERRIDE {} 112 virtual void Copy() OVERRIDE {}
108 virtual void Paste() OVERRIDE {} 113 virtual void Paste() OVERRIDE {}
109 #if defined(OS_MACOSX) 114 #if defined(OS_MACOSX)
110 virtual void OpenTabpose() OVERRIDE {} 115 virtual void OpenTabpose() OVERRIDE {}
111 virtual void EnterPresentationMode( 116 virtual void EnterPresentationMode(
112 const GURL& url, 117 const GURL& url,
113 FullscreenExitBubbleType bubble_type) OVERRIDE {} 118 FullscreenExitBubbleType bubble_type) OVERRIDE {}
114 virtual void ExitPresentationMode() OVERRIDE {} 119 virtual void ExitPresentationMode() OVERRIDE {}
115 virtual bool InPresentationMode() OVERRIDE; 120 virtual bool InPresentationMode() OVERRIDE;
(...skipping 17 matching lines...) Expand all
133 protected: 138 protected:
134 virtual void DestroyBrowser() OVERRIDE {} 139 virtual void DestroyBrowser() OVERRIDE {}
135 140
136 private: 141 private:
137 TestLocationBar location_bar_; 142 TestLocationBar location_bar_;
138 143
139 DISALLOW_COPY_AND_ASSIGN(TestBrowserWindow); 144 DISALLOW_COPY_AND_ASSIGN(TestBrowserWindow);
140 }; 145 };
141 146
142 #endif // CHROME_TEST_BASE_TEST_BROWSER_WINDOW_H_ 147 #endif // CHROME_TEST_BASE_TEST_BROWSER_WINDOW_H_
OLDNEW
« no previous file with comments | « chrome/common/chrome_switches.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698