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 156 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
167 virtual bool ContainsNativeView(gfx::NativeView native_view) const OVERRIDE; | 167 virtual bool ContainsNativeView(gfx::NativeView native_view) const OVERRIDE; |
168 virtual void SetVisuallyDeemphasized(const SkColor* color, | 168 virtual void SetVisuallyDeemphasized(const SkColor* color, |
169 bool animate) OVERRIDE; | 169 bool animate) OVERRIDE; |
170 virtual gfx::PluginWindowHandle GetCompositingSurface() OVERRIDE; | 170 virtual gfx::PluginWindowHandle GetCompositingSurface() OVERRIDE; |
171 virtual void ShowCompositorHostWindow(bool show) OVERRIDE; | 171 virtual void ShowCompositorHostWindow(bool show) OVERRIDE; |
172 virtual void OnAccessibilityNotifications( | 172 virtual void OnAccessibilityNotifications( |
173 const std::vector<ViewHostMsg_AccessibilityNotification_Params>& params | 173 const std::vector<ViewHostMsg_AccessibilityNotification_Params>& params |
174 ) OVERRIDE; | 174 ) OVERRIDE; |
175 | 175 |
176 // Implementation of NotificationObserver: | 176 // Implementation of NotificationObserver: |
177 virtual void Observe(NotificationType type, | 177 virtual void Observe(int type, |
178 const NotificationSource& source, | 178 const NotificationSource& source, |
179 const NotificationDetails& details) OVERRIDE; | 179 const NotificationDetails& details) OVERRIDE; |
180 | 180 |
181 // Implementation of BrowserAccessibilityDelegate: | 181 // Implementation of BrowserAccessibilityDelegate: |
182 virtual void SetAccessibilityFocus(int acc_obj_id) OVERRIDE; | 182 virtual void SetAccessibilityFocus(int acc_obj_id) OVERRIDE; |
183 virtual void AccessibilityDoDefaultAction(int acc_obj_id) OVERRIDE; | 183 virtual void AccessibilityDoDefaultAction(int acc_obj_id) OVERRIDE; |
184 | 184 |
185 protected: | 185 protected: |
186 // Windows Message Handlers | 186 // Windows Message Handlers |
187 LRESULT OnCreate(CREATESTRUCT* create_struct); | 187 LRESULT OnCreate(CREATESTRUCT* create_struct); |
(...skipping 176 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
364 // Stores the current text input type received by ImeUpdateTextInputState() | 364 // Stores the current text input type received by ImeUpdateTextInputState() |
365 // method. | 365 // method. |
366 ui::TextInputType text_input_type_; | 366 ui::TextInputType text_input_type_; |
367 | 367 |
368 ScopedVector<ui::ViewProp> props_; | 368 ScopedVector<ui::ViewProp> props_; |
369 | 369 |
370 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewWin); | 370 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewWin); |
371 }; | 371 }; |
372 | 372 |
373 #endif // CHROME_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_WIN_H_ | 373 #endif // CHROME_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_WIN_H_ |
OLD | NEW |