| 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 CONTENT_RENDERER_PEPPER_PEPPER_WEBPLUGIN_IMPL_H_ | 5 #ifndef CONTENT_RENDERER_PEPPER_PEPPER_WEBPLUGIN_IMPL_H_ |
| 6 #define CONTENT_RENDERER_PEPPER_PEPPER_WEBPLUGIN_IMPL_H_ | 6 #define CONTENT_RENDERER_PEPPER_PEPPER_WEBPLUGIN_IMPL_H_ |
| 7 | 7 |
| 8 #include <memory> | 8 #include <memory> |
| 9 #include <string> | 9 #include <string> |
| 10 #include <vector> | 10 #include <vector> |
| (...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 63 void didFailLoading(const blink::WebURLError&) override; | 63 void didFailLoading(const blink::WebURLError&) override; |
| 64 bool hasSelection() const override; | 64 bool hasSelection() const override; |
| 65 blink::WebString selectionAsText() const override; | 65 blink::WebString selectionAsText() const override; |
| 66 blink::WebString selectionAsMarkup() const override; | 66 blink::WebString selectionAsMarkup() const override; |
| 67 blink::WebURL linkAtPosition(const blink::WebPoint& position) const override; | 67 blink::WebURL linkAtPosition(const blink::WebPoint& position) const override; |
| 68 bool getPrintPresetOptionsFromDocument( | 68 bool getPrintPresetOptionsFromDocument( |
| 69 blink::WebPrintPresetOptions* preset_options) override; | 69 blink::WebPrintPresetOptions* preset_options) override; |
| 70 bool startFind(const blink::WebString& search_text, | 70 bool startFind(const blink::WebString& search_text, |
| 71 bool case_sensitive, | 71 bool case_sensitive, |
| 72 int identifier) override; | 72 int identifier) override; |
| 73 void selectFindResult(bool forward) override; | 73 void selectFindResult(bool forward, int identifier) override; |
| 74 void stopFind() override; | 74 void stopFind() override; |
| 75 bool supportsPaginatedPrint() override; | 75 bool supportsPaginatedPrint() override; |
| 76 bool isPrintScalingDisabled() override; | 76 bool isPrintScalingDisabled() override; |
| 77 | 77 |
| 78 int printBegin(const blink::WebPrintParams& print_params) override; | 78 int printBegin(const blink::WebPrintParams& print_params) override; |
| 79 void printPage(int page_number, blink::WebCanvas* canvas) override; | 79 void printPage(int page_number, blink::WebCanvas* canvas) override; |
| 80 void printEnd() override; | 80 void printEnd() override; |
| 81 | 81 |
| 82 bool canRotateView() override; | 82 bool canRotateView() override; |
| 83 void rotateView(RotationType type) override; | 83 void rotateView(RotationType type) override; |
| (...skipping 18 matching lines...) Expand all Loading... |
| 102 | 102 |
| 103 // TODO(tommycli): Remove once we fix https://crbug.com/588624. | 103 // TODO(tommycli): Remove once we fix https://crbug.com/588624. |
| 104 bool destroyed_; | 104 bool destroyed_; |
| 105 | 105 |
| 106 DISALLOW_COPY_AND_ASSIGN(PepperWebPluginImpl); | 106 DISALLOW_COPY_AND_ASSIGN(PepperWebPluginImpl); |
| 107 }; | 107 }; |
| 108 | 108 |
| 109 } // namespace content | 109 } // namespace content |
| 110 | 110 |
| 111 #endif // CONTENT_RENDERER_PEPPER_PEPPER_WEBPLUGIN_IMPL_H_ | 111 #endif // CONTENT_RENDERER_PEPPER_PEPPER_WEBPLUGIN_IMPL_H_ |
| OLD | NEW |