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

Side by Side Diff: content/browser/frame_host/render_widget_host_view_child_frame.h

Issue 884103004: Update {virtual,override,final} to follow C++11 style. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 10 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 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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_BROWSER_FRAME_HOST_RENDER_WIDGET_HOST_VIEW_CHILD_FRAME_H_ 5 #ifndef CONTENT_BROWSER_FRAME_HOST_RENDER_WIDGET_HOST_VIEW_CHILD_FRAME_H_
6 #define CONTENT_BROWSER_FRAME_HOST_RENDER_WIDGET_HOST_VIEW_CHILD_FRAME_H_ 6 #define CONTENT_BROWSER_FRAME_HOST_RENDER_WIDGET_HOST_VIEW_CHILD_FRAME_H_
7 7
8 #include "base/memory/scoped_ptr.h" 8 #include "base/memory/scoped_ptr.h"
9 #include "content/browser/renderer_host/render_widget_host_view_base.h" 9 #include "content/browser/renderer_host/render_widget_host_view_base.h"
10 #include "content/common/content_export.h" 10 #include "content/common/content_export.h"
(...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after
113 bool IsSpeaking() const override; 113 bool IsSpeaking() const override;
114 void StopSpeaking() override; 114 void StopSpeaking() override;
115 115
116 // RenderWidgetHostViewBase implementation. 116 // RenderWidgetHostViewBase implementation.
117 bool PostProcessEventForPluginIme( 117 bool PostProcessEventForPluginIme(
118 const NativeWebKeyboardEvent& event) override; 118 const NativeWebKeyboardEvent& event) override;
119 #endif // defined(OS_MACOSX) 119 #endif // defined(OS_MACOSX)
120 120
121 // RenderWidgetHostViewBase implementation. 121 // RenderWidgetHostViewBase implementation.
122 #if defined(OS_ANDROID) 122 #if defined(OS_ANDROID)
123 virtual void LockCompositingSurface() override; 123 void LockCompositingSurface() override;
124 virtual void UnlockCompositingSurface() override; 124 void UnlockCompositingSurface() override;
125 #endif // defined(OS_ANDROID) 125 #endif // defined(OS_ANDROID)
126 126
127 #if defined(OS_WIN) 127 #if defined(OS_WIN)
128 virtual void SetParentNativeViewAccessible( 128 virtual void SetParentNativeViewAccessible(
129 gfx::NativeViewAccessible accessible_parent) override; 129 gfx::NativeViewAccessible accessible_parent) override;
130 virtual gfx::NativeViewId GetParentForWindowlessPlugin() const override; 130 virtual gfx::NativeViewId GetParentForWindowlessPlugin() const override;
131 #endif 131 #endif
132 BrowserAccessibilityManager* CreateBrowserAccessibilityManager( 132 BrowserAccessibilityManager* CreateBrowserAccessibilityManager(
133 BrowserAccessibilityDelegate* delegate) override; 133 BrowserAccessibilityDelegate* delegate) override;
134 134
(...skipping 13 matching lines...) Expand all
148 // sent through it are routed to the embedding renderer process. 148 // sent through it are routed to the embedding renderer process.
149 CrossProcessFrameConnector* frame_connector_; 149 CrossProcessFrameConnector* frame_connector_;
150 150
151 private: 151 private:
152 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewChildFrame); 152 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewChildFrame);
153 }; 153 };
154 154
155 } // namespace content 155 } // namespace content
156 156
157 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_WIDGET_HOST_VIEW_CHILD_FRAME_H_ 157 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_WIDGET_HOST_VIEW_CHILD_FRAME_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698