Chromium Code Reviews| Index: Source/web/WebRemoteFrameImpl.cpp |
| diff --git a/Source/web/WebRemoteFrameImpl.cpp b/Source/web/WebRemoteFrameImpl.cpp |
| index 3d23b85bd385f1d22e704559378b6b9227c858a2..ded07ee3e6dbd8f1462081b642e9288c8b9743be 100644 |
| --- a/Source/web/WebRemoteFrameImpl.cpp |
| +++ b/Source/web/WebRemoteFrameImpl.cpp |
| @@ -661,10 +661,10 @@ bool WebRemoteFrameImpl::isPrintScalingDisabledForPlugin(const WebNode&) |
| return false; |
| } |
| -int WebRemoteFrameImpl::getPrintCopiesForPlugin(const WebNode&) |
| +bool WebRemoteFrameImpl::getPrintPresetOptionsForPlugin(const WebNode&, WebPrintPresetOptions*) |
|
dcheng
2014/10/09 08:53:42
Since we're changing this signature anyway, how ha
Nikhil
2014/10/20 10:04:23
Based on your suggestion, I've moved the new metho
|
| { |
| ASSERT_NOT_REACHED(); |
| - return 1; |
| + return false; |
| } |
| bool WebRemoteFrameImpl::hasCustomPageSizeStyle(int pageIndex) |