| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 410 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 421 void OpenSelectProfileDialog(); | 421 void OpenSelectProfileDialog(); |
| 422 void OpenNewProfileDialog(); | 422 void OpenNewProfileDialog(); |
| 423 void OpenBugReportDialog(); | 423 void OpenBugReportDialog(); |
| 424 | 424 |
| 425 void ToggleBookmarkBar(); | 425 void ToggleBookmarkBar(); |
| 426 void ToggleExtensionShelf(); | 426 void ToggleExtensionShelf(); |
| 427 | 427 |
| 428 void OpenBookmarkManager(); | 428 void OpenBookmarkManager(); |
| 429 void ShowAppMenu(); | 429 void ShowAppMenu(); |
| 430 void ShowPageMenu(); | 430 void ShowPageMenu(); |
| 431 void ShowBookmarkManagerTab(); |
| 431 void ShowHistoryTab(); | 432 void ShowHistoryTab(); |
| 432 void ShowDownloadsTab(); | 433 void ShowDownloadsTab(); |
| 433 void ShowExtensionsTab(); | 434 void ShowExtensionsTab(); |
| 434 void OpenClearBrowsingDataDialog(); | 435 void OpenClearBrowsingDataDialog(); |
| 435 void OpenOptionsDialog(); | 436 void OpenOptionsDialog(); |
| 436 void OpenKeywordEditor(); | 437 void OpenKeywordEditor(); |
| 437 void OpenPasswordManager(); | 438 void OpenPasswordManager(); |
| 438 void OpenSyncMyBookmarksDialog(); | 439 void OpenSyncMyBookmarksDialog(); |
| 439 void OpenImportSettingsDialog(); | 440 void OpenImportSettingsDialog(); |
| 440 void OpenAboutChromeDialog(); | 441 void OpenAboutChromeDialog(); |
| (...skipping 451 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 892 }; | 893 }; |
| 893 | 894 |
| 894 // Which deferred action to perform when OnDidGetApplicationInfo is notified | 895 // Which deferred action to perform when OnDidGetApplicationInfo is notified |
| 895 // from a TabContents. Currently, only one pending action is allowed. | 896 // from a TabContents. Currently, only one pending action is allowed. |
| 896 WebAppAction pending_web_app_action_; | 897 WebAppAction pending_web_app_action_; |
| 897 | 898 |
| 898 DISALLOW_COPY_AND_ASSIGN(Browser); | 899 DISALLOW_COPY_AND_ASSIGN(Browser); |
| 899 }; | 900 }; |
| 900 | 901 |
| 901 #endif // CHROME_BROWSER_BROWSER_H_ | 902 #endif // CHROME_BROWSER_BROWSER_H_ |
| OLD | NEW |