| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 569 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 580 // in |SupportsWindowFeature| for details on this. | 580 // in |SupportsWindowFeature| for details on this. |
| 581 bool CanSupportWindowFeature(WindowFeature feature) const; | 581 bool CanSupportWindowFeature(WindowFeature feature) const; |
| 582 | 582 |
| 583 // TODO(port): port these, and re-merge the two function declaration lists. | 583 // TODO(port): port these, and re-merge the two function declaration lists. |
| 584 // Page-related commands. | 584 // Page-related commands. |
| 585 void Print(); | 585 void Print(); |
| 586 void AdvancedPrint(); | 586 void AdvancedPrint(); |
| 587 void EmailPageLocation(); | 587 void EmailPageLocation(); |
| 588 void ToggleEncodingAutoDetect(); | 588 void ToggleEncodingAutoDetect(); |
| 589 void OverrideEncoding(int encoding_id); | 589 void OverrideEncoding(int encoding_id); |
| 590 void PrintToDelegate(); |
| 590 | 591 |
| 591 // Clipboard commands | 592 // Clipboard commands |
| 592 void Cut(); | 593 void Cut(); |
| 593 void Copy(); | 594 void Copy(); |
| 594 void Paste(); | 595 void Paste(); |
| 595 | 596 |
| 596 // Find-in-page | 597 // Find-in-page |
| 597 void Find(); | 598 void Find(); |
| 598 void FindNext(); | 599 void FindNext(); |
| 599 void FindPrevious(); | 600 void FindPrevious(); |
| (...skipping 860 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1460 bool window_has_shown_; | 1461 bool window_has_shown_; |
| 1461 | 1462 |
| 1462 // Currently open color chooser. Non-NULL after OpenColorChooser is called and | 1463 // Currently open color chooser. Non-NULL after OpenColorChooser is called and |
| 1463 // before DidEndColorChooser is called. | 1464 // before DidEndColorChooser is called. |
| 1464 scoped_ptr<content::ColorChooser> color_chooser_; | 1465 scoped_ptr<content::ColorChooser> color_chooser_; |
| 1465 | 1466 |
| 1466 DISALLOW_COPY_AND_ASSIGN(Browser); | 1467 DISALLOW_COPY_AND_ASSIGN(Browser); |
| 1467 }; | 1468 }; |
| 1468 | 1469 |
| 1469 #endif // CHROME_BROWSER_UI_BROWSER_H_ | 1470 #endif // CHROME_BROWSER_UI_BROWSER_H_ |
| OLD | NEW |