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 388 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
399 void ShowDownloadsTab(); | 399 void ShowDownloadsTab(); |
400 void OpenClearBrowsingDataDialog(); | 400 void OpenClearBrowsingDataDialog(); |
401 void OpenOptionsDialog(); | 401 void OpenOptionsDialog(); |
402 void OpenKeywordEditor(); | 402 void OpenKeywordEditor(); |
403 void OpenPasswordManager(); | 403 void OpenPasswordManager(); |
404 void OpenSyncMyBookmarksDialog(); | 404 void OpenSyncMyBookmarksDialog(); |
405 void OpenImportSettingsDialog(); | 405 void OpenImportSettingsDialog(); |
406 void OpenAboutChromeDialog(); | 406 void OpenAboutChromeDialog(); |
407 void OpenHelpTab(); | 407 void OpenHelpTab(); |
408 void OpenExtensionsTab(); | 408 void OpenExtensionsTab(); |
| 409 // Used by the "Get themes" link in the options dialog. |
| 410 void OpenThemeGalleryTabAndActivate(); |
409 #if defined(OS_CHROMEOS) | 411 #if defined(OS_CHROMEOS) |
410 void ShowControlPanel(); | 412 void ShowControlPanel(); |
411 #endif | 413 #endif |
412 | 414 |
413 virtual void UpdateDownloadShelfVisibility(bool visible); | 415 virtual void UpdateDownloadShelfVisibility(bool visible); |
414 | 416 |
415 ///////////////////////////////////////////////////////////////////////////// | 417 ///////////////////////////////////////////////////////////////////////////// |
416 | 418 |
417 // Sets the value of homepage related prefs to new values. Since we do not | 419 // Sets the value of homepage related prefs to new values. Since we do not |
418 // want to change these values for existing users, we can not change the | 420 // want to change these values for existing users, we can not change the |
(...skipping 388 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
807 // Dialog box used for opening and saving files. | 809 // Dialog box used for opening and saving files. |
808 scoped_refptr<SelectFileDialog> select_file_dialog_; | 810 scoped_refptr<SelectFileDialog> select_file_dialog_; |
809 | 811 |
810 // Keep track of the encoding auto detect pref. | 812 // Keep track of the encoding auto detect pref. |
811 BooleanPrefMember encoding_auto_detect_; | 813 BooleanPrefMember encoding_auto_detect_; |
812 | 814 |
813 DISALLOW_COPY_AND_ASSIGN(Browser); | 815 DISALLOW_COPY_AND_ASSIGN(Browser); |
814 }; | 816 }; |
815 | 817 |
816 #endif // CHROME_BROWSER_BROWSER_H_ | 818 #endif // CHROME_BROWSER_BROWSER_H_ |
OLD | NEW |