| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2013 Google Inc. All rights reserved. | 2 * Copyright (C) 2013 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 "public/platform/WebPrivatePtr.h" | 35 #include "public/platform/WebPrivatePtr.h" |
| 36 #include "public/platform/WebString.h" | 36 #include "public/platform/WebString.h" |
| 37 | 37 |
| 38 namespace v8 { | 38 namespace v8 { |
| 39 class Isolate; | 39 class Isolate; |
| 40 class Object; | 40 class Object; |
| 41 class Value; | 41 class Value; |
| 42 template <class T> class Handle; | 42 template <class T> class Handle; |
| 43 } | 43 } |
| 44 | 44 |
| 45 namespace blink { class DOMError; } | 45 namespace blink { |
| 46 | 46 |
| 47 namespace blink { | 47 class DOMError; |
| 48 | 48 |
| 49 class WebDOMError { | 49 class WebDOMError { |
| 50 public: | 50 public: |
| 51 ~WebDOMError() { reset(); } | 51 ~WebDOMError() { reset(); } |
| 52 | 52 |
| 53 WebDOMError() { } | 53 WebDOMError() { } |
| 54 WebDOMError(const WebDOMError& b) { assign(b); } | 54 WebDOMError(const WebDOMError& b) { assign(b); } |
| 55 WebDOMError& operator=(const WebDOMError& b) | 55 WebDOMError& operator=(const WebDOMError& b) |
| 56 { | 56 { |
| 57 assign(b); | 57 assign(b); |
| 58 return *this; | 58 return *this; |
| 59 } | 59 } |
| 60 | 60 |
| 61 BLINK_EXPORT static WebDOMError create(const WebString& name, const WebStrin
g& message); | 61 BLINK_EXPORT static WebDOMError create(const WebString& name, const WebStrin
g& message); |
| 62 | 62 |
| 63 BLINK_EXPORT void reset(); | 63 BLINK_EXPORT void reset(); |
| 64 BLINK_EXPORT void assign(const WebDOMError&); | 64 BLINK_EXPORT void assign(const WebDOMError&); |
| 65 | 65 |
| 66 BLINK_EXPORT WebString name() const; | 66 BLINK_EXPORT WebString name() const; |
| 67 BLINK_EXPORT WebString message() const; | 67 BLINK_EXPORT WebString message() const; |
| 68 | 68 |
| 69 BLINK_EXPORT v8::Handle<v8::Value> toV8Value(v8::Handle<v8::Object> creation
Context, v8::Isolate*); | 69 BLINK_EXPORT v8::Handle<v8::Value> toV8Value(v8::Handle<v8::Object> creation
Context, v8::Isolate*); |
| 70 | 70 |
| 71 #if BLINK_IMPLEMENTATION | 71 #if BLINK_IMPLEMENTATION |
| 72 explicit WebDOMError(const PassRefPtrWillBeRawPtr<blink::DOMError>&); | 72 explicit WebDOMError(const PassRefPtrWillBeRawPtr<DOMError>&); |
| 73 WebDOMError& operator=(const PassRefPtrWillBeRawPtr<blink::DOMError>&); | 73 WebDOMError& operator=(const PassRefPtrWillBeRawPtr<DOMError>&); |
| 74 #endif | 74 #endif |
| 75 | 75 |
| 76 protected: | 76 protected: |
| 77 WebPrivatePtr<blink::DOMError> m_private; | 77 WebPrivatePtr<DOMError> m_private; |
| 78 }; | 78 }; |
| 79 | 79 |
| 80 } // namespace blink | 80 } // namespace blink |
| 81 | 81 |
| 82 #endif // WebDOMError_h | 82 #endif // WebDOMError_h |
| OLD | NEW |