OLD | NEW |
---|---|
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 CHROME_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_WIN_H_ | 5 #ifndef CHROME_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_WIN_H_ |
6 #define CHROME_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_WIN_H_ | 6 #define CHROME_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_WIN_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include <atlbase.h> | 9 #include <atlbase.h> |
10 #include <atlapp.h> | 10 #include <atlapp.h> |
(...skipping 148 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
159 virtual BackingStore* AllocBackingStore(const gfx::Size& size); | 159 virtual BackingStore* AllocBackingStore(const gfx::Size& size); |
160 virtual void SetBackground(const SkBitmap& background); | 160 virtual void SetBackground(const SkBitmap& background); |
161 virtual bool ContainsNativeView(gfx::NativeView native_view) const; | 161 virtual bool ContainsNativeView(gfx::NativeView native_view) const; |
162 virtual void SetVisuallyDeemphasized(const SkColor* color, bool animate); | 162 virtual void SetVisuallyDeemphasized(const SkColor* color, bool animate); |
163 | 163 |
164 virtual gfx::PluginWindowHandle GetCompositingSurface(); | 164 virtual gfx::PluginWindowHandle GetCompositingSurface(); |
165 virtual void ShowCompositorHostWindow(bool show); | 165 virtual void ShowCompositorHostWindow(bool show); |
166 | 166 |
167 virtual void OnAccessibilityNotifications( | 167 virtual void OnAccessibilityNotifications( |
168 const std::vector<ViewHostMsg_AccessibilityNotification_Params>& params); | 168 const std::vector<ViewHostMsg_AccessibilityNotification_Params>& params); |
169 | 169 |
oshima
2011/05/25 17:18:18
ditto (line, OVERRIDE)
| |
170 virtual void PpapiPluginFocusChanged(bool focused); | |
171 | |
170 // Implementation of NotificationObserver: | 172 // Implementation of NotificationObserver: |
171 virtual void Observe(NotificationType type, | 173 virtual void Observe(NotificationType type, |
172 const NotificationSource& source, | 174 const NotificationSource& source, |
173 const NotificationDetails& details); | 175 const NotificationDetails& details); |
174 | 176 |
175 // Implementation of BrowserAccessibilityDelegate: | 177 // Implementation of BrowserAccessibilityDelegate: |
176 virtual void SetAccessibilityFocus(int acc_obj_id); | 178 virtual void SetAccessibilityFocus(int acc_obj_id); |
177 virtual void AccessibilityDoDefaultAction(int acc_obj_id); | 179 virtual void AccessibilityDoDefaultAction(int acc_obj_id); |
178 | 180 |
179 protected: | 181 protected: |
(...skipping 180 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
360 WebKit::WebTextInputType text_input_type_; | 362 WebKit::WebTextInputType text_input_type_; |
361 | 363 |
362 ScopedVector<ui::ViewProp> props_; | 364 ScopedVector<ui::ViewProp> props_; |
363 | 365 |
364 scoped_ptr<ui::ViewProp> accessibility_prop_; | 366 scoped_ptr<ui::ViewProp> accessibility_prop_; |
365 | 367 |
366 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewWin); | 368 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewWin); |
367 }; | 369 }; |
368 | 370 |
369 #endif // CHROME_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_WIN_H_ | 371 #endif // CHROME_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_WIN_H_ |
OLD | NEW |