Chromium Code Reviews| Index: public/web/WebPlugin.h |
| diff --git a/public/web/WebPlugin.h b/public/web/WebPlugin.h |
| index a99c3ee217b53642dc33c5c876f58a212d95e6af..dc068d52a79c0f81c4852377e7d864e136ee48b6 100644 |
| --- a/public/web/WebPlugin.h |
| +++ b/public/web/WebPlugin.h |
| @@ -114,6 +114,8 @@ public: |
| // Returns true if the printed content should not be scaled to |
| // the printer's printable area. |
| virtual bool isPrintScalingDisabled() { return false; } |
| + // Returns number of copies to be printed. |
| + virtual int getNumCopies() { return 1; } |
|
Inactive
2014/07/15 15:55:00
We usually avoid abbreviations in Blink. getNumber
Nikhil
2014/07/16 13:58:49
Done.
|
| // Sets up printing with the specified printParams. Returns the number of |
| // pages to be printed at these settings. |