| 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 293 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 304 void FindPrevious(); | 304 void FindPrevious(); |
| 305 | 305 |
| 306 // Zoom | 306 // Zoom |
| 307 void ZoomIn(); | 307 void ZoomIn(); |
| 308 void ZoomReset(); | 308 void ZoomReset(); |
| 309 void ZoomOut(); | 309 void ZoomOut(); |
| 310 | 310 |
| 311 #if defined(OS_WIN) | 311 #if defined(OS_WIN) |
| 312 // Focus various bits of UI | 312 // Focus various bits of UI |
| 313 void FocusToolbar(); | 313 void FocusToolbar(); |
| 314 #endif |
| 315 #if defined(OS_WIN) || defined(OS_LINUX) |
| 314 void FocusLocationBar(); | 316 void FocusLocationBar(); |
| 315 void FocusSearch(); | 317 void FocusSearch(); |
| 318 #endif |
| 316 | 319 |
| 317 // Show various bits of UI | 320 // Show various bits of UI |
| 321 #if defined(OS_WIN) || defined(OS_LINUX) |
| 318 void OpenFile(); | 322 void OpenFile(); |
| 323 #endif |
| 324 #if defined(OS_WIN) |
| 319 void OpenCreateShortcutsDialog(); | 325 void OpenCreateShortcutsDialog(); |
| 320 void OpenDebuggerWindow(); | 326 void OpenDebuggerWindow(); |
| 321 void OpenJavaScriptConsole(); | 327 void OpenJavaScriptConsole(); |
| 322 void OpenTaskManager(); | 328 void OpenTaskManager(); |
| 323 void OpenSelectProfileDialog(); | 329 void OpenSelectProfileDialog(); |
| 324 void OpenNewProfileDialog(); | 330 void OpenNewProfileDialog(); |
| 325 void OpenBugReportDialog(); | 331 void OpenBugReportDialog(); |
| 326 void ToggleBookmarkBar(); | 332 void ToggleBookmarkBar(); |
| 327 void OpenBookmarkManager(); | 333 void OpenBookmarkManager(); |
| 328 #endif | 334 #endif |
| (...skipping 337 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 666 // The browser idle task helps cleanup unused memory resources when idle. | 672 // The browser idle task helps cleanup unused memory resources when idle. |
| 667 scoped_ptr<BrowserIdleTimer> idle_task_; | 673 scoped_ptr<BrowserIdleTimer> idle_task_; |
| 668 | 674 |
| 669 // Keep track of the encoding auto detect pref. | 675 // Keep track of the encoding auto detect pref. |
| 670 BooleanPrefMember encoding_auto_detect_; | 676 BooleanPrefMember encoding_auto_detect_; |
| 671 | 677 |
| 672 DISALLOW_COPY_AND_ASSIGN(Browser); | 678 DISALLOW_COPY_AND_ASSIGN(Browser); |
| 673 }; | 679 }; |
| 674 | 680 |
| 675 #endif // CHROME_BROWSER_BROWSER_H_ | 681 #endif // CHROME_BROWSER_BROWSER_H_ |
| OLD | NEW |