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

Side by Side Diff: content/child/npapi/webplugin_delegate_impl.h

Issue 1844383003: Remove NPAPI support for form data (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 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_CHILD_NPAPI_WEBPLUGIN_DELEGATE_IMPL_H_ 5 #ifndef CONTENT_CHILD_NPAPI_WEBPLUGIN_DELEGATE_IMPL_H_
6 #define CONTENT_CHILD_NPAPI_WEBPLUGIN_DELEGATE_IMPL_H_ 6 #define CONTENT_CHILD_NPAPI_WEBPLUGIN_DELEGATE_IMPL_H_
7 7
8 #include <stdint.h> 8 #include <stdint.h>
9 9
10 #include <string> 10 #include <string>
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after
81 const std::vector<std::string>& arg_names, 81 const std::vector<std::string>& arg_names,
82 const std::vector<std::string>& arg_values, 82 const std::vector<std::string>& arg_values,
83 bool load_manually) override; 83 bool load_manually) override;
84 void PluginDestroyed() override; 84 void PluginDestroyed() override;
85 void UpdateGeometry(const gfx::Rect& window_rect, 85 void UpdateGeometry(const gfx::Rect& window_rect,
86 const gfx::Rect& clip_rect) override; 86 const gfx::Rect& clip_rect) override;
87 void Paint(SkCanvas* canvas, const gfx::Rect& rect) override; 87 void Paint(SkCanvas* canvas, const gfx::Rect& rect) override;
88 void SetFocus(bool focused) override; 88 void SetFocus(bool focused) override;
89 bool HandleInputEvent(const blink::WebInputEvent& event, 89 bool HandleInputEvent(const blink::WebInputEvent& event,
90 WebCursor::CursorInfo* cursor_info) override; 90 WebCursor::CursorInfo* cursor_info) override;
91 bool GetFormValue(base::string16* value) override;
92 int GetProcessId() override; 91 int GetProcessId() override;
93 // End of WebPluginDelegate implementation. 92 // End of WebPluginDelegate implementation.
94 93
95 PluginInstance* instance() { return instance_.get(); } 94 PluginInstance* instance() { return instance_.get(); }
96 gfx::Rect GetRect() const { return window_rect_; } 95 gfx::Rect GetRect() const { return window_rect_; }
97 gfx::Rect GetClipRect() const { return clip_rect_; } 96 gfx::Rect GetClipRect() const { return clip_rect_; }
98 97
99 // Returns the path for the library implementing this plugin. 98 // Returns the path for the library implementing this plugin.
100 base::FilePath GetPluginPath(); 99 base::FilePath GetPluginPath();
101 100
(...skipping 177 matching lines...) Expand 10 before | Expand all | Expand 10 after
279 // asynchronously. 278 // asynchronously.
280 base::WeakPtrFactory<WebPluginDelegateImpl> user_gesture_msg_factory_; 279 base::WeakPtrFactory<WebPluginDelegateImpl> user_gesture_msg_factory_;
281 #endif 280 #endif
282 281
283 DISALLOW_COPY_AND_ASSIGN(WebPluginDelegateImpl); 282 DISALLOW_COPY_AND_ASSIGN(WebPluginDelegateImpl);
284 }; 283 };
285 284
286 } // namespace content 285 } // namespace content
287 286
288 #endif // CONTENT_CHILD_NPAPI_WEBPLUGIN_DELEGATE_IMPL_H_ 287 #endif // CONTENT_CHILD_NPAPI_WEBPLUGIN_DELEGATE_IMPL_H_
OLDNEW
« no previous file with comments | « content/child/npapi/webplugin_delegate.h ('k') | content/child/npapi/webplugin_delegate_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698