| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2011 Google Inc. All rights reserved. | 2 * Copyright (C) 2011 Google Inc. All rights reserved. |
| 3 * Copyright (C) 2012 Motorola Mobility Inc. | 3 * Copyright (C) 2012 Motorola Mobility Inc. |
| 4 * | 4 * |
| 5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
| 6 * modification, are permitted provided that the following conditions | 6 * modification, are permitted provided that the following conditions |
| 7 * are met: | 7 * are met: |
| 8 * | 8 * |
| 9 * 1. Redistributions of source code must retain the above copyright | 9 * 1. Redistributions of source code must retain the above copyright |
| 10 * notice, this list of conditions and the following disclaimer. | 10 * notice, this list of conditions and the following disclaimer. |
| (...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 62 | 62 |
| 63 static String createPublicURL(ExecutionContext*, URLRegistrable*, const Stri
ng& uuid = String()); | 63 static String createPublicURL(ExecutionContext*, URLRegistrable*, const Stri
ng& uuid = String()); |
| 64 static void revokeObjectUUID(ExecutionContext*, const String&); | 64 static void revokeObjectUUID(ExecutionContext*, const String&); |
| 65 | 65 |
| 66 virtual KURL url() const override { return m_url; } | 66 virtual KURL url() const override { return m_url; } |
| 67 virtual void setURL(const KURL& url) override { m_url = url; } | 67 virtual void setURL(const KURL& url) override { m_url = url; } |
| 68 | 68 |
| 69 virtual String input() const override { return m_input; } | 69 virtual String input() const override { return m_input; } |
| 70 virtual void setInput(const String&) override; | 70 virtual void setInput(const String&) override; |
| 71 | 71 |
| 72 void trace(Visitor*) { } | 72 DEFINE_INLINE_TRACE() { } |
| 73 | 73 |
| 74 private: | 74 private: |
| 75 DOMURL(const String& url, const KURL& base, ExceptionState&); | 75 DOMURL(const String& url, const KURL& base, ExceptionState&); |
| 76 | 76 |
| 77 KURL m_url; | 77 KURL m_url; |
| 78 String m_input; | 78 String m_input; |
| 79 }; | 79 }; |
| 80 | 80 |
| 81 } // namespace blink | 81 } // namespace blink |
| 82 | 82 |
| 83 #endif // DOMURL_h | 83 #endif // DOMURL_h |
| OLD | NEW |