| 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 27 matching lines...) Expand all Loading... |
| 38 #include "../platform/WebSize.h" | 38 #include "../platform/WebSize.h" |
| 39 #include "WebBeginFrameArgs.h" | 39 #include "WebBeginFrameArgs.h" |
| 40 #include "WebCompositionUnderline.h" | 40 #include "WebCompositionUnderline.h" |
| 41 #include "WebTextDirection.h" | 41 #include "WebTextDirection.h" |
| 42 #include "WebTextInputInfo.h" | 42 #include "WebTextInputInfo.h" |
| 43 | 43 |
| 44 namespace blink { | 44 namespace blink { |
| 45 | 45 |
| 46 class WebCompositeAndReadbackAsyncCallback; | 46 class WebCompositeAndReadbackAsyncCallback; |
| 47 class WebInputEvent; | 47 class WebInputEvent; |
| 48 class WebLayerTreeView; | |
| 49 class WebMouseEvent; | |
| 50 class WebPagePopup; | 48 class WebPagePopup; |
| 51 class WebString; | 49 class WebString; |
| 52 class WebWidgetClient; | |
| 53 struct WebPoint; | 50 struct WebPoint; |
| 54 struct WebRenderingStats; | |
| 55 template <typename T> class WebVector; | 51 template <typename T> class WebVector; |
| 56 | 52 |
| 57 class WebWidget { | 53 class WebWidget { |
| 58 public: | 54 public: |
| 59 // This method closes and deletes the WebWidget. | 55 // This method closes and deletes the WebWidget. |
| 60 virtual void close() { } | 56 virtual void close() { } |
| 61 | 57 |
| 62 // Returns the current size of the WebWidget. | 58 // Returns the current size of the WebWidget. |
| 63 virtual WebSize size() { return WebSize(); } | 59 virtual WebSize size() { return WebSize(); } |
| 64 | 60 |
| (...skipping 203 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 268 // Sets the height subtracted from the Widget to accomodate the top controls
. | 264 // Sets the height subtracted from the Widget to accomodate the top controls
. |
| 269 virtual void setTopControlsLayoutHeight(float) { } | 265 virtual void setTopControlsLayoutHeight(float) { } |
| 270 | 266 |
| 271 protected: | 267 protected: |
| 272 ~WebWidget() { } | 268 ~WebWidget() { } |
| 273 }; | 269 }; |
| 274 | 270 |
| 275 } // namespace blink | 271 } // namespace blink |
| 276 | 272 |
| 277 #endif | 273 #endif |
| OLD | NEW |