| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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_UI_BROWSER_H_ | 5 #ifndef CHROME_BROWSER_UI_BROWSER_H_ |
| 6 #define CHROME_BROWSER_UI_BROWSER_H_ | 6 #define CHROME_BROWSER_UI_BROWSER_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <map> | 9 #include <map> |
| 10 #include <set> | 10 #include <set> |
| (...skipping 574 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 585 void OpenSearchEngineOptionsDialog(); | 585 void OpenSearchEngineOptionsDialog(); |
| 586 #if defined(OS_CHROMEOS) | 586 #if defined(OS_CHROMEOS) |
| 587 void OpenFileManager(); | 587 void OpenFileManager(); |
| 588 void OpenSystemOptionsDialog(); | 588 void OpenSystemOptionsDialog(); |
| 589 void OpenInternetOptionsDialog(); | 589 void OpenInternetOptionsDialog(); |
| 590 void OpenLanguageOptionsDialog(); | 590 void OpenLanguageOptionsDialog(); |
| 591 void OpenSystemTabAndActivate(); | 591 void OpenSystemTabAndActivate(); |
| 592 void OpenMobilePlanTabAndActivate(); | 592 void OpenMobilePlanTabAndActivate(); |
| 593 #endif | 593 #endif |
| 594 void OpenPluginsTabAndActivate(); | 594 void OpenPluginsTabAndActivate(); |
| 595 void ShowSyncSetup(); |
| 595 | 596 |
| 596 virtual void UpdateDownloadShelfVisibility(bool visible); | 597 virtual void UpdateDownloadShelfVisibility(bool visible); |
| 597 | 598 |
| 598 // Overridden from TabStripModelDelegate: | 599 // Overridden from TabStripModelDelegate: |
| 599 virtual bool UseVerticalTabs() const; | 600 virtual bool UseVerticalTabs() const; |
| 600 virtual bool UseCompactNavigationBar() const; | 601 virtual bool UseCompactNavigationBar() const; |
| 601 | 602 |
| 602 ///////////////////////////////////////////////////////////////////////////// | 603 ///////////////////////////////////////////////////////////////////////////// |
| 603 | 604 |
| 604 // Sets the value of homepage related prefs to new values. Since we do not | 605 // Sets the value of homepage related prefs to new values. Since we do not |
| (...skipping 656 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1261 | 1262 |
| 1262 scoped_ptr<InstantController> instant_; | 1263 scoped_ptr<InstantController> instant_; |
| 1263 scoped_ptr<InstantUnloadHandler> instant_unload_handler_; | 1264 scoped_ptr<InstantUnloadHandler> instant_unload_handler_; |
| 1264 | 1265 |
| 1265 BookmarkBar::State bookmark_bar_state_; | 1266 BookmarkBar::State bookmark_bar_state_; |
| 1266 | 1267 |
| 1267 DISALLOW_COPY_AND_ASSIGN(Browser); | 1268 DISALLOW_COPY_AND_ASSIGN(Browser); |
| 1268 }; | 1269 }; |
| 1269 | 1270 |
| 1270 #endif // CHROME_BROWSER_UI_BROWSER_H_ | 1271 #endif // CHROME_BROWSER_UI_BROWSER_H_ |
| OLD | NEW |