| 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 379 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 390 void OpenClearBrowsingDataDialog(); | 390 void OpenClearBrowsingDataDialog(); |
| 391 void OpenOptionsDialog(); | 391 void OpenOptionsDialog(); |
| 392 void OpenKeywordEditor(); | 392 void OpenKeywordEditor(); |
| 393 void OpenPasswordManager(); | 393 void OpenPasswordManager(); |
| 394 #ifdef CHROME_PERSONALIZATION | 394 #ifdef CHROME_PERSONALIZATION |
| 395 void OpenSyncMyBookmarksDialog(); | 395 void OpenSyncMyBookmarksDialog(); |
| 396 #endif | 396 #endif |
| 397 void OpenImportSettingsDialog(); | 397 void OpenImportSettingsDialog(); |
| 398 void OpenAboutChromeDialog(); | 398 void OpenAboutChromeDialog(); |
| 399 void OpenHelpTab(); | 399 void OpenHelpTab(); |
| 400 void OpenExtensionsTab(); |
| 400 #if defined(OS_CHROMEOS) | 401 #if defined(OS_CHROMEOS) |
| 401 void ShowControlPanel(); | 402 void ShowControlPanel(); |
| 402 #endif | 403 #endif |
| 403 | 404 |
| 404 virtual void UpdateDownloadShelfVisibility(bool visible); | 405 virtual void UpdateDownloadShelfVisibility(bool visible); |
| 405 | 406 |
| 406 ///////////////////////////////////////////////////////////////////////////// | 407 ///////////////////////////////////////////////////////////////////////////// |
| 407 | 408 |
| 408 // Sets the value of homepage related prefs to new values. Since we do not | 409 // Sets the value of homepage related prefs to new values. Since we do not |
| 409 // want to change these values for existing users, we can not change the | 410 // want to change these values for existing users, we can not change the |
| (...skipping 385 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 795 // The browser idle task helps cleanup unused memory resources when idle. | 796 // The browser idle task helps cleanup unused memory resources when idle. |
| 796 scoped_ptr<BrowserIdleTimer> idle_task_; | 797 scoped_ptr<BrowserIdleTimer> idle_task_; |
| 797 | 798 |
| 798 // Keep track of the encoding auto detect pref. | 799 // Keep track of the encoding auto detect pref. |
| 799 BooleanPrefMember encoding_auto_detect_; | 800 BooleanPrefMember encoding_auto_detect_; |
| 800 | 801 |
| 801 DISALLOW_COPY_AND_ASSIGN(Browser); | 802 DISALLOW_COPY_AND_ASSIGN(Browser); |
| 802 }; | 803 }; |
| 803 | 804 |
| 804 #endif // CHROME_BROWSER_BROWSER_H_ | 805 #endif // CHROME_BROWSER_BROWSER_H_ |
| OLD | NEW |