OLD | NEW |
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_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_WIN_H_ | 5 #ifndef CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_WIN_H_ |
6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_WIN_H_ | 6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_WIN_H_ |
7 | 7 |
8 #include <atlbase.h> | 8 #include <atlbase.h> |
9 #include <atlapp.h> | 9 #include <atlapp.h> |
10 #include <atlcrack.h> | 10 #include <atlcrack.h> |
(...skipping 146 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
157 virtual void Hide() OVERRIDE; | 157 virtual void Hide() OVERRIDE; |
158 virtual bool IsShowing() OVERRIDE; | 158 virtual bool IsShowing() OVERRIDE; |
159 virtual gfx::Rect GetViewBounds() const OVERRIDE; | 159 virtual gfx::Rect GetViewBounds() const OVERRIDE; |
160 virtual void SetBackground(const SkBitmap& background) OVERRIDE; | 160 virtual void SetBackground(const SkBitmap& background) OVERRIDE; |
161 | 161 |
162 // Implementation of RenderWidgetHostViewPort. | 162 // Implementation of RenderWidgetHostViewPort. |
163 virtual void InitAsPopup(RenderWidgetHostView* parent_host_view, | 163 virtual void InitAsPopup(RenderWidgetHostView* parent_host_view, |
164 const gfx::Rect& pos) OVERRIDE; | 164 const gfx::Rect& pos) OVERRIDE; |
165 virtual void InitAsFullscreen( | 165 virtual void InitAsFullscreen( |
166 RenderWidgetHostView* reference_host_view) OVERRIDE; | 166 RenderWidgetHostView* reference_host_view) OVERRIDE; |
167 virtual void WasRestored() OVERRIDE; | 167 virtual void WasShown() OVERRIDE; |
168 virtual void WasHidden() OVERRIDE; | 168 virtual void WasHidden() OVERRIDE; |
169 virtual void MovePluginWindows( | 169 virtual void MovePluginWindows( |
170 const std::vector<webkit::npapi::WebPluginGeometry>& moves) OVERRIDE; | 170 const std::vector<webkit::npapi::WebPluginGeometry>& moves) OVERRIDE; |
171 virtual void Focus() OVERRIDE; | 171 virtual void Focus() OVERRIDE; |
172 virtual void Blur() OVERRIDE; | 172 virtual void Blur() OVERRIDE; |
173 virtual void UpdateCursor(const WebCursor& cursor) OVERRIDE; | 173 virtual void UpdateCursor(const WebCursor& cursor) OVERRIDE; |
174 virtual void SetIsLoading(bool is_loading) OVERRIDE; | 174 virtual void SetIsLoading(bool is_loading) OVERRIDE; |
175 virtual void TextInputStateChanged(ui::TextInputType type, | 175 virtual void TextInputStateChanged(ui::TextInputType type, |
176 bool can_compose_inline) OVERRIDE; | 176 bool can_compose_inline) OVERRIDE; |
177 virtual void SelectionBoundsChanged(const gfx::Rect& start_rect, | 177 virtual void SelectionBoundsChanged(const gfx::Rect& start_rect, |
(...skipping 373 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
551 bool touch_events_enabled_; | 551 bool touch_events_enabled_; |
552 | 552 |
553 scoped_ptr<ui::GestureRecognizer> gesture_recognizer_; | 553 scoped_ptr<ui::GestureRecognizer> gesture_recognizer_; |
554 | 554 |
555 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewWin); | 555 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewWin); |
556 }; | 556 }; |
557 | 557 |
558 } // namespace content | 558 } // namespace content |
559 | 559 |
560 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_WIN_H_ | 560 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_WIN_H_ |
OLD | NEW |