Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(14)

Side by Side Diff: chrome/browser/ui/browser.h

Issue 7721001: PrintPreview: Make ctrl-shift-p start the native print flow. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Addressed review comments Created 9 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 505 matching lines...) Expand 10 before | Expand all | Expand 10 after
516 // feature use |CanSupportWindowFeature|. 516 // feature use |CanSupportWindowFeature|.
517 bool SupportsWindowFeature(WindowFeature feature) const; 517 bool SupportsWindowFeature(WindowFeature feature) const;
518 518
519 // Returns true if the Browser can support the specified feature. See comment 519 // Returns true if the Browser can support the specified feature. See comment
520 // in |SupportsWindowFeature| for details on this. 520 // in |SupportsWindowFeature| for details on this.
521 bool CanSupportWindowFeature(WindowFeature feature) const; 521 bool CanSupportWindowFeature(WindowFeature feature) const;
522 522
523 // TODO(port): port these, and re-merge the two function declaration lists. 523 // TODO(port): port these, and re-merge the two function declaration lists.
524 // Page-related commands. 524 // Page-related commands.
525 void Print(); 525 void Print();
526 void AdvancedPrint();
526 void EmailPageLocation(); 527 void EmailPageLocation();
527 void ToggleEncodingAutoDetect(); 528 void ToggleEncodingAutoDetect();
528 void OverrideEncoding(int encoding_id); 529 void OverrideEncoding(int encoding_id);
529 530
530 // Clipboard commands 531 // Clipboard commands
531 void Cut(); 532 void Cut();
532 void Copy(); 533 void Copy();
533 void Paste(); 534 void Paste();
534 535
535 // Find-in-page 536 // Find-in-page
(...skipping 740 matching lines...) Expand 10 before | Expand all | Expand 10 after
1276 1277
1277 scoped_ptr<InstantController> instant_; 1278 scoped_ptr<InstantController> instant_;
1278 scoped_ptr<InstantUnloadHandler> instant_unload_handler_; 1279 scoped_ptr<InstantUnloadHandler> instant_unload_handler_;
1279 1280
1280 BookmarkBar::State bookmark_bar_state_; 1281 BookmarkBar::State bookmark_bar_state_;
1281 1282
1282 DISALLOW_COPY_AND_ASSIGN(Browser); 1283 DISALLOW_COPY_AND_ASSIGN(Browser);
1283 }; 1284 };
1284 1285
1285 #endif // CHROME_BROWSER_UI_BROWSER_H_ 1286 #endif // CHROME_BROWSER_UI_BROWSER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698