| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2009 Google Inc. All rights reserved. | 2 * Copyright (C) 2009 Google Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
| 6 * met: | 6 * met: |
| 7 * | 7 * |
| 8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
| (...skipping 20 matching lines...) Expand all Loading... |
| 31 #ifndef WebWidgetClient_h | 31 #ifndef WebWidgetClient_h |
| 32 #define WebWidgetClient_h | 32 #define WebWidgetClient_h |
| 33 | 33 |
| 34 #include "WebNavigationPolicy.h" | 34 #include "WebNavigationPolicy.h" |
| 35 #include "public/platform/WebCommon.h" | 35 #include "public/platform/WebCommon.h" |
| 36 #include "public/platform/WebLayerTreeView.h" | 36 #include "public/platform/WebLayerTreeView.h" |
| 37 #include "public/platform/WebPoint.h" | 37 #include "public/platform/WebPoint.h" |
| 38 #include "public/platform/WebRect.h" | 38 #include "public/platform/WebRect.h" |
| 39 #include "public/platform/WebScreenInfo.h" | 39 #include "public/platform/WebScreenInfo.h" |
| 40 #include "public/web/WebMeaningfulLayout.h" | 40 #include "public/web/WebMeaningfulLayout.h" |
| 41 #include "public/web/WebTextDirection.h" |
| 41 #include "public/web/WebTouchAction.h" | 42 #include "public/web/WebTouchAction.h" |
| 42 | 43 |
| 43 namespace blink { | 44 namespace blink { |
| 44 | 45 |
| 45 class WebGestureEvent; | 46 class WebGestureEvent; |
| 46 class WebNode; | 47 class WebNode; |
| 47 class WebString; | 48 class WebString; |
| 48 class WebWidget; | 49 class WebWidget; |
| 49 struct WebCursorInfo; | 50 struct WebCursorInfo; |
| 50 struct WebFloatPoint; | 51 struct WebFloatPoint; |
| (...skipping 139 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 190 // migration is completed. | 191 // migration is completed. |
| 191 virtual void convertWindowToViewport(WebFloatRect* rect) {} | 192 virtual void convertWindowToViewport(WebFloatRect* rect) {} |
| 192 | 193 |
| 193 protected: | 194 protected: |
| 194 ~WebWidgetClient() { } | 195 ~WebWidgetClient() { } |
| 195 }; | 196 }; |
| 196 | 197 |
| 197 } // namespace blink | 198 } // namespace blink |
| 198 | 199 |
| 199 #endif | 200 #endif |
| OLD | NEW |