| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2011 Google Inc. All rights reserved. | 2 * Copyright (C) 2013 Google. All rights reserved. |
| 3 * Copyright (C) 2012 Motorola Mobility Inc. | |
| 4 * | 3 * |
| 5 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 6 * modification, are permitted provided that the following conditions | 5 * modification, are permitted provided that the following conditions |
| 7 * are met: | 6 * are met: |
| 8 * | 7 * |
| 9 * 1. Redistributions of source code must retain the above copyright | 8 * 1. Redistributions of source code must retain the above copyright |
| 10 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 11 * 2. Redistributions in binary form must reproduce the above copyright | 10 * 2. Redistributions in binary form must reproduce the above copyright |
| 12 * notice, this list of conditions and the following disclaimer in the | 11 * notice, this list of conditions and the following disclaimer in the |
| 13 * documentation and/or other materials provided with the distribution. | 12 * documentation and/or other materials provided with the distribution. |
| 14 * | 13 * |
| 15 * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY | 14 * THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY |
| 16 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED | 15 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED |
| 17 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE | 16 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE |
| 18 * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY | 17 * DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY |
| 19 * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES | 18 * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES |
| 20 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; | 19 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; |
| 21 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND | 20 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND |
| 22 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 21 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 23 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF | 22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
| 24 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 23 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 25 */ | 24 */ |
| 26 | 25 |
| 27 #ifndef DOMURL_h | 26 #ifndef LayerRect_h |
| 28 #define DOMURL_h | 27 #define LayerRect_h |
| 29 | 28 |
| 30 #include "wtf/Forward.h" | 29 #include "core/dom/ClientRect.h" |
| 30 |
| 31 #include "wtf/PassRefPtr.h" | 31 #include "wtf/PassRefPtr.h" |
| 32 #include "wtf/RefCounted.h" | 32 #include "wtf/RefCounted.h" |
| 33 #include "wtf/RefPtr.h" |
| 33 | 34 |
| 34 namespace WebCore { | 35 namespace WebCore { |
| 35 | 36 |
| 36 class Blob; | 37 class Node; |
| 37 class ScriptExecutionContext; | |
| 38 class URLRegistrable; | |
| 39 | 38 |
| 40 class DOMURL : public RefCounted<DOMURL> { | 39 class LayerRect : public RefCounted<LayerRect> { |
| 40 public: |
| 41 static PassRefPtr<LayerRect> create(PassRefPtr<Node> node, PassRefPtr<Client
Rect> rect) |
| 42 { |
| 43 return adoptRef(new LayerRect(node, rect)); |
| 44 } |
| 41 | 45 |
| 42 public: | 46 Node* layerRootNode() const { return m_layerRootNode.get(); } |
| 43 static PassRefPtr<DOMURL> create() { return adoptRef(new DOMURL); } | 47 ClientRect* layerRelativeRect() const { return m_rect.get(); } |
| 44 | 48 |
| 45 static String createObjectURL(ScriptExecutionContext*, Blob*); | 49 private: |
| 46 static void revokeObjectURL(ScriptExecutionContext*, const String&); | 50 LayerRect(PassRefPtr<Node> node, PassRefPtr<ClientRect> rect) |
| 51 : m_layerRootNode(node) |
| 52 , m_rect(rect) |
| 53 { |
| 54 } |
| 47 | 55 |
| 48 static String createPublicURL(ScriptExecutionContext*, URLRegistrable*); | 56 RefPtr<Node> m_layerRootNode; |
| 57 RefPtr<ClientRect> m_rect; |
| 49 }; | 58 }; |
| 50 | 59 |
| 51 } // namespace WebCore | 60 } // namespace WebCore |
| 52 | 61 |
| 53 #endif // DOMURL_h | 62 #endif |
| OLD | NEW |