| OLD | NEW |
| 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 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 "base/basictypes.h" | 8 #include "base/basictypes.h" |
| 9 | 9 |
| 10 #include <set> | 10 #include <set> |
| (...skipping 311 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 322 void OpenFile(); | 322 void OpenFile(); |
| 323 #endif | 323 #endif |
| 324 #if defined(OS_WIN) | 324 #if defined(OS_WIN) |
| 325 void OpenCreateShortcutsDialog(); | 325 void OpenCreateShortcutsDialog(); |
| 326 void OpenDebuggerWindow(); | 326 void OpenDebuggerWindow(); |
| 327 void OpenJavaScriptConsole(); | 327 void OpenJavaScriptConsole(); |
| 328 void OpenTaskManager(); | 328 void OpenTaskManager(); |
| 329 void OpenSelectProfileDialog(); | 329 void OpenSelectProfileDialog(); |
| 330 void OpenNewProfileDialog(); | 330 void OpenNewProfileDialog(); |
| 331 void OpenBugReportDialog(); | 331 void OpenBugReportDialog(); |
| 332 #endif // defined(OS_WIN) |
| 333 |
| 334 #if defined(OS_WIN) || defined(OS_MACOSX) |
| 332 void ToggleBookmarkBar(); | 335 void ToggleBookmarkBar(); |
| 336 #endif |
| 337 |
| 338 #if defined(OS_WIN) |
| 333 void OpenBookmarkManager(); | 339 void OpenBookmarkManager(); |
| 334 #endif | 340 #endif |
| 335 void ShowHistoryTab(); | 341 void ShowHistoryTab(); |
| 336 void ShowDownloadsTab(); | 342 void ShowDownloadsTab(); |
| 337 #if defined(OS_WIN) | 343 #if defined(OS_WIN) |
| 338 void OpenClearBrowsingDataDialog(); | 344 void OpenClearBrowsingDataDialog(); |
| 339 void OpenImportSettingsDialog(); | 345 void OpenImportSettingsDialog(); |
| 340 void OpenOptionsDialog(); | 346 void OpenOptionsDialog(); |
| 341 void OpenKeywordEditor(); | 347 void OpenKeywordEditor(); |
| 342 void OpenPasswordManager(); | 348 void OpenPasswordManager(); |
| (...skipping 329 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 672 // The browser idle task helps cleanup unused memory resources when idle. | 678 // The browser idle task helps cleanup unused memory resources when idle. |
| 673 scoped_ptr<BrowserIdleTimer> idle_task_; | 679 scoped_ptr<BrowserIdleTimer> idle_task_; |
| 674 | 680 |
| 675 // Keep track of the encoding auto detect pref. | 681 // Keep track of the encoding auto detect pref. |
| 676 BooleanPrefMember encoding_auto_detect_; | 682 BooleanPrefMember encoding_auto_detect_; |
| 677 | 683 |
| 678 DISALLOW_COPY_AND_ASSIGN(Browser); | 684 DISALLOW_COPY_AND_ASSIGN(Browser); |
| 679 }; | 685 }; |
| 680 | 686 |
| 681 #endif // CHROME_BROWSER_BROWSER_H_ | 687 #endif // CHROME_BROWSER_BROWSER_H_ |
| OLD | NEW |