| Index: chrome/browser/ui/browser_commands.h
|
| diff --git a/chrome/browser/ui/browser_commands.h b/chrome/browser/ui/browser_commands.h
|
| index a2daa77ed326e7c6756133271866c1f03d664fd8..86464082c159f37191345753dc37658331f1ff4b 100644
|
| --- a/chrome/browser/ui/browser_commands.h
|
| +++ b/chrome/browser/ui/browser_commands.h
|
| @@ -110,10 +110,10 @@ void ShowWebsiteSettings(Browser* browser,
|
| const content::SSLStatus& ssl);
|
| void Print(Browser* browser);
|
| bool CanPrint(Browser* browser);
|
| -#if !defined(OS_WIN)
|
| -void AdvancedPrint(Browser* browser);
|
| -bool CanAdvancedPrint(Browser* browser);
|
| -#endif // !OS_WIN
|
| +#if !defined(DISABLE_BASIC_PRINTING)
|
| +void BasicPrint(Browser* browser);
|
| +bool CanBasicPrint(Browser* browser);
|
| +#endif // !DISABLE_BASIC_PRINTING
|
| void EmailPageLocation(Browser* browser);
|
| bool CanEmailPageLocation(const Browser* browser);
|
| void Cut(Browser* browser);
|
|
|