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

Side by Side Diff: third_party/WebKit/Source/modules/quota/DOMError.h

Issue 1362953003: Fire window.onerror for uncaught IndexedDB errors (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebased Created 3 years, 11 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 unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2012 Google Inc. All Rights Reserved. 2 * Copyright (C) 2012 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 5 * modification, are permitted provided that the following conditions
6 * are met: 6 * are met:
7 * 1. Redistributions of source code must retain the above copyright 7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer. 8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright 9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the 10 * notice, this list of conditions and the following disclaimer in the
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
51 51
52 static DOMError* create(ExceptionCode ec, const String& message) { 52 static DOMError* create(ExceptionCode ec, const String& message) {
53 return new DOMError(DOMException::getErrorName(ec), message); 53 return new DOMError(DOMException::getErrorName(ec), message);
54 } 54 }
55 55
56 virtual ~DOMError(); 56 virtual ~DOMError();
57 57
58 const String& name() const { return m_name; } 58 const String& name() const { return m_name; }
59 const String& message() const { return m_message; } 59 const String& message() const { return m_message; }
60 60
61 String toStringForConsole() const;
62
61 DEFINE_INLINE_TRACE() {} 63 DEFINE_INLINE_TRACE() {}
62 64
63 protected: 65 protected:
64 explicit DOMError(const String& name); 66 explicit DOMError(const String& name);
65 DOMError(const String& name, const String& message); 67 DOMError(const String& name, const String& message);
66 68
67 private: 69 private:
68 const String m_name; 70 const String m_name;
69 const String m_message; 71 const String m_message;
70 }; 72 };
71 73
72 } // namespace blink 74 } // namespace blink
73 75
74 #endif // DOMError_h 76 #endif // DOMError_h
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/modules/indexeddb/IDBRequest.cpp ('k') | third_party/WebKit/Source/modules/quota/DOMError.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698