| 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 21 matching lines...) Expand all Loading... |
| 32 #define WebAXObject_h | 32 #define WebAXObject_h |
| 33 | 33 |
| 34 #include "../platform/WebCommon.h" | 34 #include "../platform/WebCommon.h" |
| 35 #include "../platform/WebPoint.h" | 35 #include "../platform/WebPoint.h" |
| 36 #include "../platform/WebPrivatePtr.h" | 36 #include "../platform/WebPrivatePtr.h" |
| 37 #include "../platform/WebSize.h" | 37 #include "../platform/WebSize.h" |
| 38 #include "../platform/WebVector.h" | 38 #include "../platform/WebVector.h" |
| 39 #include "WebAXEnums.h" | 39 #include "WebAXEnums.h" |
| 40 #include <memory> | 40 #include <memory> |
| 41 | 41 |
| 42 #if BLINK_IMPLEMENTATION | |
| 43 namespace WTF { | |
| 44 template <typename T> | |
| 45 class PassRefPtr; | |
| 46 } | |
| 47 #endif | |
| 48 | |
| 49 class SkMatrix44; | 42 class SkMatrix44; |
| 50 | 43 |
| 51 namespace blink { | 44 namespace blink { |
| 52 | 45 |
| 53 class AXObject; | 46 class AXObject; |
| 54 class ScopedAXObjectCache; | 47 class ScopedAXObjectCache; |
| 55 class WebAXObject; | 48 class WebAXObject; |
| 56 class WebNode; | 49 class WebNode; |
| 57 class WebDocument; | 50 class WebDocument; |
| 58 class WebString; | 51 class WebString; |
| (...skipping 285 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 344 operator AXObject*() const; | 337 operator AXObject*() const; |
| 345 #endif | 338 #endif |
| 346 | 339 |
| 347 private: | 340 private: |
| 348 WebPrivatePtr<AXObject> m_private; | 341 WebPrivatePtr<AXObject> m_private; |
| 349 }; | 342 }; |
| 350 | 343 |
| 351 } // namespace blink | 344 } // namespace blink |
| 352 | 345 |
| 353 #endif | 346 #endif |
| OLD | NEW |