OLD | NEW |
1 // Copyright (c) 2006-2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-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 #ifndef CHROME_BROWSER_BROWSER_H_ | 5 #ifndef CHROME_BROWSER_BROWSER_H_ |
6 #define CHROME_BROWSER_BROWSER_H_ | 6 #define CHROME_BROWSER_BROWSER_H_ |
7 | 7 |
8 #include <map> | 8 #include <map> |
9 #include <set> | 9 #include <set> |
10 #include <vector> | 10 #include <vector> |
(...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
161 | 161 |
162 // Opens the specified URL in a new browser window in an incognito session. | 162 // Opens the specified URL in a new browser window in an incognito session. |
163 // If there is already an existing active incognito session for the specified | 163 // If there is already an existing active incognito session for the specified |
164 // |profile|, that session is re-used. | 164 // |profile|, that session is re-used. |
165 static void OpenURLOffTheRecord(Profile* profile, const GURL& url); | 165 static void OpenURLOffTheRecord(Profile* profile, const GURL& url); |
166 | 166 |
167 // Opens a new application ("thin frame") window for the specified url. | 167 // Opens a new application ("thin frame") window for the specified url. |
168 static void OpenApplicationWindow(Profile* profile, const GURL& url); | 168 static void OpenApplicationWindow(Profile* profile, const GURL& url); |
169 | 169 |
170 #if defined(OS_MACOSX) | 170 #if defined(OS_MACOSX) |
171 // Open a new window with help (needed on Mac when there are no windows). | 171 // Open a new window with history/downloads/help (needed on Mac when there are |
| 172 // no windows). |
| 173 static void OpenHistoryWindow(Profile* profile); |
| 174 static void OpenDownloadsWindow(Profile* profile); |
172 static void OpenHelpWindow(Profile* profile); | 175 static void OpenHelpWindow(Profile* profile); |
173 #endif | 176 #endif |
174 | 177 |
175 // State Storage and Retrieval for UI /////////////////////////////////////// | 178 // State Storage and Retrieval for UI /////////////////////////////////////// |
176 | 179 |
177 // Save and restore the window position. | 180 // Save and restore the window position. |
178 std::wstring GetWindowPlacementKey() const; | 181 std::wstring GetWindowPlacementKey() const; |
179 bool ShouldSaveWindowPlacement() const; | 182 bool ShouldSaveWindowPlacement() const; |
180 void SaveWindowPlacement(const gfx::Rect& bounds, bool maximized); | 183 void SaveWindowPlacement(const gfx::Rect& bounds, bool maximized); |
181 gfx::Rect GetSavedWindowBounds() const; | 184 gfx::Rect GetSavedWindowBounds() const; |
(...skipping 633 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
815 // Dialog box used for opening and saving files. | 818 // Dialog box used for opening and saving files. |
816 scoped_refptr<SelectFileDialog> select_file_dialog_; | 819 scoped_refptr<SelectFileDialog> select_file_dialog_; |
817 | 820 |
818 // Keep track of the encoding auto detect pref. | 821 // Keep track of the encoding auto detect pref. |
819 BooleanPrefMember encoding_auto_detect_; | 822 BooleanPrefMember encoding_auto_detect_; |
820 | 823 |
821 DISALLOW_COPY_AND_ASSIGN(Browser); | 824 DISALLOW_COPY_AND_ASSIGN(Browser); |
822 }; | 825 }; |
823 | 826 |
824 #endif // CHROME_BROWSER_BROWSER_H_ | 827 #endif // CHROME_BROWSER_BROWSER_H_ |
OLD | NEW |