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 <set> | 8 #include <set> |
9 #include <vector> | 9 #include <vector> |
10 | 10 |
(...skipping 351 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
362 void OpenBookmarkManager(); | 362 void OpenBookmarkManager(); |
363 void ShowHistoryTab(); | 363 void ShowHistoryTab(); |
364 void ShowDownloadsTab(); | 364 void ShowDownloadsTab(); |
365 void OpenClearBrowsingDataDialog(); | 365 void OpenClearBrowsingDataDialog(); |
366 void OpenOptionsDialog(); | 366 void OpenOptionsDialog(); |
367 void OpenKeywordEditor(); | 367 void OpenKeywordEditor(); |
368 void OpenPasswordManager(); | 368 void OpenPasswordManager(); |
369 void OpenImportSettingsDialog(); | 369 void OpenImportSettingsDialog(); |
370 void OpenAboutChromeDialog(); | 370 void OpenAboutChromeDialog(); |
371 void OpenHelpTab(); | 371 void OpenHelpTab(); |
372 #if defined(LINUX2) | 372 #if defined(OS_CHROMEOS) |
373 void ShowControlPanel(); | 373 void ShowControlPanel(); |
374 #endif | 374 #endif |
375 | 375 |
376 virtual void UpdateDownloadShelfVisibility(bool visible); | 376 virtual void UpdateDownloadShelfVisibility(bool visible); |
377 | 377 |
378 ///////////////////////////////////////////////////////////////////////////// | 378 ///////////////////////////////////////////////////////////////////////////// |
379 | 379 |
380 static void RegisterPrefs(PrefService* prefs); | 380 static void RegisterPrefs(PrefService* prefs); |
381 static void RegisterUserPrefs(PrefService* prefs); | 381 static void RegisterUserPrefs(PrefService* prefs); |
382 | 382 |
(...skipping 370 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
753 // The browser idle task helps cleanup unused memory resources when idle. | 753 // The browser idle task helps cleanup unused memory resources when idle. |
754 scoped_ptr<BrowserIdleTimer> idle_task_; | 754 scoped_ptr<BrowserIdleTimer> idle_task_; |
755 | 755 |
756 // Keep track of the encoding auto detect pref. | 756 // Keep track of the encoding auto detect pref. |
757 BooleanPrefMember encoding_auto_detect_; | 757 BooleanPrefMember encoding_auto_detect_; |
758 | 758 |
759 DISALLOW_COPY_AND_ASSIGN(Browser); | 759 DISALLOW_COPY_AND_ASSIGN(Browser); |
760 }; | 760 }; |
761 | 761 |
762 #endif // CHROME_BROWSER_BROWSER_H_ | 762 #endif // CHROME_BROWSER_BROWSER_H_ |
OLD | NEW |