| 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 24 matching lines...) Expand all Loading... |
| 35 #include "../platform/WebPrivatePtr.h" | 35 #include "../platform/WebPrivatePtr.h" |
| 36 #include "../platform/WebVector.h" | 36 #include "../platform/WebVector.h" |
| 37 #include "WebAXEnums.h" | 37 #include "WebAXEnums.h" |
| 38 | 38 |
| 39 #if BLINK_IMPLEMENTATION | 39 #if BLINK_IMPLEMENTATION |
| 40 namespace WTF { template <typename T> class PassRefPtr; } | 40 namespace WTF { template <typename T> class PassRefPtr; } |
| 41 #endif | 41 #endif |
| 42 | 42 |
| 43 namespace WebCore { class AXObject; } | 43 namespace WebCore { class AXObject; } |
| 44 | 44 |
| 45 namespace WebKit { | 45 namespace blink { |
| 46 | 46 |
| 47 class WebNode; | 47 class WebNode; |
| 48 class WebDocument; | 48 class WebDocument; |
| 49 class WebString; | 49 class WebString; |
| 50 class WebURL; | 50 class WebURL; |
| 51 struct WebPoint; | 51 struct WebPoint; |
| 52 struct WebRect; | 52 struct WebRect; |
| 53 | 53 |
| 54 // A container for passing around a reference to AXObject. | 54 // A container for passing around a reference to AXObject. |
| 55 class WebAXObject { | 55 class WebAXObject { |
| (...skipping 157 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 213 #if BLINK_IMPLEMENTATION | 213 #if BLINK_IMPLEMENTATION |
| 214 WebAXObject(const WTF::PassRefPtr<WebCore::AXObject>&); | 214 WebAXObject(const WTF::PassRefPtr<WebCore::AXObject>&); |
| 215 WebAXObject& operator=(const WTF::PassRefPtr<WebCore::AXObject>&); | 215 WebAXObject& operator=(const WTF::PassRefPtr<WebCore::AXObject>&); |
| 216 operator WTF::PassRefPtr<WebCore::AXObject>() const; | 216 operator WTF::PassRefPtr<WebCore::AXObject>() const; |
| 217 #endif | 217 #endif |
| 218 | 218 |
| 219 private: | 219 private: |
| 220 WebPrivatePtr<WebCore::AXObject> m_private; | 220 WebPrivatePtr<WebCore::AXObject> m_private; |
| 221 }; | 221 }; |
| 222 | 222 |
| 223 } // namespace WebKit | 223 } // namespace blink |
| 224 | 224 |
| 225 #endif | 225 #endif |
| OLD | NEW |