Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(341)

Unified Diff: Source/modules/geolocation/PositionError.h

Issue 15605003: Make Exception and Error objects ScriptWrappable. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/core/xml/XPathException.h ('k') | Source/modules/webdatabase/SQLError.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/geolocation/PositionError.h
diff --git a/Source/modules/geolocation/PositionError.h b/Source/modules/geolocation/PositionError.h
index 072bc17721c40f1c38747ba7e81df2937063a455..d19b330d8d66d6ce22e928db738fbb799a5fbdc3 100644
--- a/Source/modules/geolocation/PositionError.h
+++ b/Source/modules/geolocation/PositionError.h
@@ -20,48 +20,50 @@
* PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
* OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#ifndef PositionError_h
#define PositionError_h
+#include "bindings/v8/ScriptWrappable.h"
#include "wtf/PassRefPtr.h"
#include "wtf/RefCounted.h"
#include "wtf/text/WTFString.h"
namespace WebCore {
-
-class PositionError : public RefCounted<PositionError> {
+
+class PositionError : public RefCounted<PositionError>, public ScriptWrappable {
public:
enum ErrorCode {
PERMISSION_DENIED = 1,
POSITION_UNAVAILABLE = 2,
TIMEOUT = 3
};
-
+
static PassRefPtr<PositionError> create(ErrorCode code, const String& message) { return adoptRef(new PositionError(code, message)); }
ErrorCode code() const { return m_code; }
const String& message() const { return m_message; }
void setIsFatal(bool isFatal) { m_isFatal = isFatal; }
bool isFatal() const { return m_isFatal; }
-
+
private:
- PositionError(ErrorCode code, const String& message)
+ PositionError(ErrorCode code, const String& message)
: m_code(code)
, m_message(message)
, m_isFatal(false)
{
+ ScriptWrappable::init(this);
}
-
+
ErrorCode m_code;
String m_message;
// Whether the error is fatal, such that no request can ever obtain a good
// position fix in the future.
bool m_isFatal;
};
-
+
} // namespace WebCore
#endif // PositionError_h
« no previous file with comments | « Source/core/xml/XPathException.h ('k') | Source/modules/webdatabase/SQLError.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698