| 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 380 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 391 | 391 |
| 392 void OpenBookmarkManager(); | 392 void OpenBookmarkManager(); |
| 393 void ShowAppMenu(); | 393 void ShowAppMenu(); |
| 394 void ShowPageMenu(); | 394 void ShowPageMenu(); |
| 395 void ShowHistoryTab(); | 395 void ShowHistoryTab(); |
| 396 void ShowDownloadsTab(); | 396 void ShowDownloadsTab(); |
| 397 void OpenClearBrowsingDataDialog(); | 397 void OpenClearBrowsingDataDialog(); |
| 398 void OpenOptionsDialog(); | 398 void OpenOptionsDialog(); |
| 399 void OpenKeywordEditor(); | 399 void OpenKeywordEditor(); |
| 400 void OpenPasswordManager(); | 400 void OpenPasswordManager(); |
| 401 #if defined(BROWSER_SYNC) | |
| 402 void OpenSyncMyBookmarksDialog(); | 401 void OpenSyncMyBookmarksDialog(); |
| 403 #endif | |
| 404 void OpenImportSettingsDialog(); | 402 void OpenImportSettingsDialog(); |
| 405 void OpenAboutChromeDialog(); | 403 void OpenAboutChromeDialog(); |
| 406 void OpenHelpTab(); | 404 void OpenHelpTab(); |
| 407 void OpenExtensionsTab(); | 405 void OpenExtensionsTab(); |
| 408 #if defined(OS_CHROMEOS) | 406 #if defined(OS_CHROMEOS) |
| 409 void ShowControlPanel(); | 407 void ShowControlPanel(); |
| 410 #endif | 408 #endif |
| 411 | 409 |
| 412 virtual void UpdateDownloadShelfVisibility(bool visible); | 410 virtual void UpdateDownloadShelfVisibility(bool visible); |
| 413 | 411 |
| (...skipping 392 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 806 // Dialog box used for opening and saving files. | 804 // Dialog box used for opening and saving files. |
| 807 scoped_refptr<SelectFileDialog> select_file_dialog_; | 805 scoped_refptr<SelectFileDialog> select_file_dialog_; |
| 808 | 806 |
| 809 // Keep track of the encoding auto detect pref. | 807 // Keep track of the encoding auto detect pref. |
| 810 BooleanPrefMember encoding_auto_detect_; | 808 BooleanPrefMember encoding_auto_detect_; |
| 811 | 809 |
| 812 DISALLOW_COPY_AND_ASSIGN(Browser); | 810 DISALLOW_COPY_AND_ASSIGN(Browser); |
| 813 }; | 811 }; |
| 814 | 812 |
| 815 #endif // CHROME_BROWSER_BROWSER_H_ | 813 #endif // CHROME_BROWSER_BROWSER_H_ |
| OLD | NEW |