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

Side by Side Diff: content/renderer/pepper/pepper_webplugin_impl.h

Issue 2082733002: Fix for PDF find-in-page bug. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 6 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
OLDNEW
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
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
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_
OLDNEW
« no previous file with comments | « content/renderer/pepper/pepper_plugin_instance_impl.cc ('k') | content/renderer/pepper/pepper_webplugin_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698