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_PUBLIC_BROWSER_RENDER_WIDGET_HOST_VIEW_H_ | 5 #ifndef CONTENT_PUBLIC_BROWSER_RENDER_WIDGET_HOST_VIEW_H_ |
6 #define CONTENT_PUBLIC_BROWSER_RENDER_WIDGET_HOST_VIEW_H_ | 6 #define CONTENT_PUBLIC_BROWSER_RENDER_WIDGET_HOST_VIEW_H_ |
7 | 7 |
8 #include <memory> | 8 #include <memory> |
9 | 9 |
10 #include "base/strings/string16.h" | 10 #include "base/strings/string16.h" |
11 #include "build/build_config.h" | 11 #include "build/build_config.h" |
12 #include "content/common/content_export.h" | 12 #include "content/common/content_export.h" |
13 #include "third_party/WebKit/public/web/WebInputEvent.h" | 13 #include "third_party/WebKit/public/web/WebInputEvent.h" |
14 #include "third_party/skia/include/core/SkColor.h" | 14 #include "third_party/skia/include/core/SkColor.h" |
15 #include "ui/gfx/native_widget_types.h" | 15 #include "ui/gfx/native_widget_types.h" |
16 | 16 |
17 class GURL; | |
18 | |
19 namespace gfx { | 17 namespace gfx { |
20 class Point; | 18 class Point; |
21 class Rect; | 19 class Rect; |
22 class Size; | 20 class Size; |
23 } | 21 } |
24 | 22 |
25 namespace ui { | 23 namespace ui { |
26 class TextInputClient; | 24 class TextInputClient; |
27 class AcceleratedWidgetMac; | 25 class AcceleratedWidgetMac; |
28 } | 26 } |
(...skipping 161 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
190 // Returns |true| if text is currently being spoken by Mac OS X. | 188 // Returns |true| if text is currently being spoken by Mac OS X. |
191 virtual bool IsSpeaking() const = 0; | 189 virtual bool IsSpeaking() const = 0; |
192 // Stops speaking, if it is currently in progress. | 190 // Stops speaking, if it is currently in progress. |
193 virtual void StopSpeaking() = 0; | 191 virtual void StopSpeaking() = 0; |
194 #endif // defined(OS_MACOSX) | 192 #endif // defined(OS_MACOSX) |
195 }; | 193 }; |
196 | 194 |
197 } // namespace content | 195 } // namespace content |
198 | 196 |
199 #endif // CONTENT_PUBLIC_BROWSER_RENDER_WIDGET_HOST_VIEW_H_ | 197 #endif // CONTENT_PUBLIC_BROWSER_RENDER_WIDGET_HOST_VIEW_H_ |
OLD | NEW |