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

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

Issue 633303002: Replace FINAL and OVERRIDE with their C++11 counterparts in content/renderer (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 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_PPEPPER_WEBPLUGIN_IMPL_H_ 5 #ifndef CONTENT_RENDERER_PEPPER_PPEPPER_WEBPLUGIN_IMPL_H_
6 #define CONTENT_RENDERER_PEPPER_PPEPPER_WEBPLUGIN_IMPL_H_ 6 #define CONTENT_RENDERER_PEPPER_PPEPPER_WEBPLUGIN_IMPL_H_
7 7
8 #include <string> 8 #include <string>
9 #include <vector> 9 #include <vector>
10 10
(...skipping 24 matching lines...) Expand all
35 const blink::WebPluginParams& params, 35 const blink::WebPluginParams& params,
36 RenderFrameImpl* render_frame); 36 RenderFrameImpl* render_frame);
37 37
38 PepperPluginInstanceImpl* instance() { return instance_.get(); } 38 PepperPluginInstanceImpl* instance() { return instance_.get(); }
39 39
40 // blink::WebPlugin implementation. 40 // blink::WebPlugin implementation.
41 virtual blink::WebPluginContainer* container() const; 41 virtual blink::WebPluginContainer* container() const;
42 virtual bool initialize(blink::WebPluginContainer* container); 42 virtual bool initialize(blink::WebPluginContainer* container);
43 virtual void destroy(); 43 virtual void destroy();
44 virtual v8::Local<v8::Object> v8ScriptableObject( 44 virtual v8::Local<v8::Object> v8ScriptableObject(
45 v8::Isolate* isolate) OVERRIDE; 45 v8::Isolate* isolate) override;
46 virtual bool getFormValue(blink::WebString& value); 46 virtual bool getFormValue(blink::WebString& value);
47 virtual void paint(blink::WebCanvas* canvas, const blink::WebRect& rect); 47 virtual void paint(blink::WebCanvas* canvas, const blink::WebRect& rect);
48 virtual void updateGeometry( 48 virtual void updateGeometry(
49 const blink::WebRect& frame_rect, 49 const blink::WebRect& frame_rect,
50 const blink::WebRect& clip_rect, 50 const blink::WebRect& clip_rect,
51 const blink::WebVector<blink::WebRect>& cut_outs_rects, 51 const blink::WebVector<blink::WebRect>& cut_outs_rects,
52 bool is_visible); 52 bool is_visible);
53 virtual void updateFocus(bool focused); 53 virtual void updateFocus(bool focused);
54 virtual void updateVisibility(bool visible); 54 virtual void updateVisibility(bool visible);
55 virtual bool acceptsInputEvents(); 55 virtual bool acceptsInputEvents();
(...skipping 11 matching lines...) Expand all
67 virtual bool hasSelection() const; 67 virtual bool hasSelection() const;
68 virtual blink::WebString selectionAsText() const; 68 virtual blink::WebString selectionAsText() const;
69 virtual blink::WebString selectionAsMarkup() const; 69 virtual blink::WebString selectionAsMarkup() const;
70 virtual blink::WebURL linkAtPosition(const blink::WebPoint& position) const; 70 virtual blink::WebURL linkAtPosition(const blink::WebPoint& position) const;
71 virtual void setZoomLevel(double level, bool text_only); 71 virtual void setZoomLevel(double level, bool text_only);
72 virtual bool startFind(const blink::WebString& search_text, 72 virtual bool startFind(const blink::WebString& search_text,
73 bool case_sensitive, 73 bool case_sensitive,
74 int identifier); 74 int identifier);
75 virtual void selectFindResult(bool forward); 75 virtual void selectFindResult(bool forward);
76 virtual void stopFind(); 76 virtual void stopFind();
77 virtual bool supportsPaginatedPrint() OVERRIDE; 77 virtual bool supportsPaginatedPrint() override;
78 virtual bool isPrintScalingDisabled() OVERRIDE; 78 virtual bool isPrintScalingDisabled() override;
79 79
80 virtual int printBegin(const blink::WebPrintParams& print_params) OVERRIDE; 80 virtual int printBegin(const blink::WebPrintParams& print_params) override;
81 virtual bool printPage(int page_number, blink::WebCanvas* canvas) OVERRIDE; 81 virtual bool printPage(int page_number, blink::WebCanvas* canvas) override;
82 virtual void printEnd() OVERRIDE; 82 virtual void printEnd() override;
83 83
84 virtual bool canRotateView() OVERRIDE; 84 virtual bool canRotateView() override;
85 virtual void rotateView(RotationType type) OVERRIDE; 85 virtual void rotateView(RotationType type) override;
86 virtual bool isPlaceholder() OVERRIDE; 86 virtual bool isPlaceholder() override;
87 87
88 private: 88 private:
89 friend class base::DeleteHelper<PepperWebPluginImpl>; 89 friend class base::DeleteHelper<PepperWebPluginImpl>;
90 90
91 virtual ~PepperWebPluginImpl(); 91 virtual ~PepperWebPluginImpl();
92 struct InitData; 92 struct InitData;
93 93
94 scoped_ptr<InitData> init_data_; // Cleared upon successful initialization. 94 scoped_ptr<InitData> init_data_; // Cleared upon successful initialization.
95 // True if the instance represents the entire document in a frame instead of 95 // True if the instance represents the entire document in a frame instead of
96 // being an embedded resource. 96 // being an embedded resource.
97 bool full_frame_; 97 bool full_frame_;
98 scoped_refptr<PepperPluginInstanceImpl> instance_; 98 scoped_refptr<PepperPluginInstanceImpl> instance_;
99 gfx::Rect plugin_rect_; 99 gfx::Rect plugin_rect_;
100 PP_Var instance_object_; 100 PP_Var instance_object_;
101 blink::WebPluginContainer* container_; 101 blink::WebPluginContainer* container_;
102 102
103 DISALLOW_COPY_AND_ASSIGN(PepperWebPluginImpl); 103 DISALLOW_COPY_AND_ASSIGN(PepperWebPluginImpl);
104 }; 104 };
105 105
106 } // namespace content 106 } // namespace content
107 107
108 #endif // CONTENT_RENDERER_PEPPER_PPEPPER_WEBPLUGIN_IMPL_H_ 108 #endif // CONTENT_RENDERER_PEPPER_PPEPPER_WEBPLUGIN_IMPL_H_
OLDNEW
« no previous file with comments | « content/renderer/pepper/pepper_video_source_host.h ('k') | content/renderer/pepper/pepper_websocket_host.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698