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_IMPL_H_ | 5 #ifndef CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_IMPL_H_ |
6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_IMPL_H_ | 6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_IMPL_H_ |
7 | 7 |
8 #include <deque> | 8 #include <deque> |
9 #include <list> | 9 #include <list> |
10 #include <map> | 10 #include <map> |
(...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
130 virtual void CopyFromBackingStore( | 130 virtual void CopyFromBackingStore( |
131 const gfx::Rect& src_rect, | 131 const gfx::Rect& src_rect, |
132 const gfx::Size& accelerated_dst_size, | 132 const gfx::Size& accelerated_dst_size, |
133 const base::Callback<void(bool, const SkBitmap&)>& callback, | 133 const base::Callback<void(bool, const SkBitmap&)>& callback, |
134 const SkBitmap::Config& bitmap_config) OVERRIDE; | 134 const SkBitmap::Config& bitmap_config) OVERRIDE; |
135 virtual bool CanCopyFromBackingStore() OVERRIDE; | 135 virtual bool CanCopyFromBackingStore() OVERRIDE; |
136 #if defined(OS_ANDROID) | 136 #if defined(OS_ANDROID) |
137 virtual void LockBackingStore() OVERRIDE; | 137 virtual void LockBackingStore() OVERRIDE; |
138 virtual void UnlockBackingStore() OVERRIDE; | 138 virtual void UnlockBackingStore() OVERRIDE; |
139 #endif | 139 #endif |
140 #if defined(TOOLKIT_GTK) | 140 #if defined(OS_MACOSX) |
141 virtual bool CopyFromBackingStoreToGtkWindow(const gfx::Rect& dest_rect, | |
142 GdkWindow* target) OVERRIDE; | |
143 #elif defined(OS_MACOSX) | |
144 virtual gfx::Size GetBackingStoreSize() OVERRIDE; | 141 virtual gfx::Size GetBackingStoreSize() OVERRIDE; |
145 virtual bool CopyFromBackingStoreToCGContext(const CGRect& dest_rect, | 142 virtual bool CopyFromBackingStoreToCGContext(const CGRect& dest_rect, |
146 CGContextRef target) OVERRIDE; | 143 CGContextRef target) OVERRIDE; |
147 #endif | 144 #endif |
148 virtual void EnableFullAccessibilityMode() OVERRIDE; | 145 virtual void EnableFullAccessibilityMode() OVERRIDE; |
149 virtual bool IsFullAccessibilityModeForTesting() OVERRIDE; | 146 virtual bool IsFullAccessibilityModeForTesting() OVERRIDE; |
150 virtual void EnableTreeOnlyAccessibilityMode() OVERRIDE; | 147 virtual void EnableTreeOnlyAccessibilityMode() OVERRIDE; |
151 virtual bool IsTreeOnlyAccessibilityModeForTesting() OVERRIDE; | 148 virtual bool IsTreeOnlyAccessibilityModeForTesting() OVERRIDE; |
152 virtual void ForwardMouseEvent( | 149 virtual void ForwardMouseEvent( |
153 const blink::WebMouseEvent& mouse_event) OVERRIDE; | 150 const blink::WebMouseEvent& mouse_event) OVERRIDE; |
(...skipping 780 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
934 std::queue<base::Callback<void(bool, const SkBitmap&)> > pending_snapshots_; | 931 std::queue<base::Callback<void(bool, const SkBitmap&)> > pending_snapshots_; |
935 | 932 |
936 int64 last_input_number_; | 933 int64 last_input_number_; |
937 | 934 |
938 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostImpl); | 935 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostImpl); |
939 }; | 936 }; |
940 | 937 |
941 } // namespace content | 938 } // namespace content |
942 | 939 |
943 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_IMPL_H_ | 940 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_IMPL_H_ |
OLD | NEW |