| 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 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 43 #include "WebCompositionUnderline.h" | 43 #include "WebCompositionUnderline.h" |
| 44 #include "WebRange.h" | 44 #include "WebRange.h" |
| 45 #include "WebTextDirection.h" | 45 #include "WebTextDirection.h" |
| 46 | 46 |
| 47 namespace blink { | 47 namespace blink { |
| 48 | 48 |
| 49 class WebCompositeAndReadbackAsyncCallback; | 49 class WebCompositeAndReadbackAsyncCallback; |
| 50 class WebInputEvent; | 50 class WebInputEvent; |
| 51 class WebLayoutAndPaintAsyncCallback; | 51 class WebLayoutAndPaintAsyncCallback; |
| 52 class WebPagePopup; | 52 class WebPagePopup; |
| 53 class WebString; | |
| 54 struct WebPoint; | 53 struct WebPoint; |
| 55 template <typename T> | 54 template <typename T> |
| 56 class WebVector; | 55 class WebVector; |
| 57 | 56 |
| 58 class WebWidget { | 57 class WebWidget { |
| 59 public: | 58 public: |
| 60 // This method closes and deletes the WebWidget. | 59 // This method closes and deletes the WebWidget. |
| 61 virtual void close() {} | 60 virtual void close() {} |
| 62 | 61 |
| 63 // Returns the current size of the WebWidget. | 62 // Returns the current size of the WebWidget. |
| (...skipping 168 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 232 // replaced. | 231 // replaced. |
| 233 virtual void applyReplacementRange(const WebRange&) {} | 232 virtual void applyReplacementRange(const WebRange&) {} |
| 234 | 233 |
| 235 protected: | 234 protected: |
| 236 ~WebWidget() {} | 235 ~WebWidget() {} |
| 237 }; | 236 }; |
| 238 | 237 |
| 239 } // namespace blink | 238 } // namespace blink |
| 240 | 239 |
| 241 #endif | 240 #endif |
| OLD | NEW |