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

Unified Diff: Source/core/dom/DOMError.h

Issue 22831019: Deprecate FileError in FileAPI (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: win test expectation fix (temporary) Created 7 years, 4 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 | « LayoutTests/http/tests/filesystem/workers/resolve-url-expected.txt ('k') | Source/core/fileapi/FileError.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/dom/DOMError.h
diff --git a/Source/core/dom/DOMError.h b/Source/core/dom/DOMError.h
index 74d4d176a0e0fa84bfd8c86011e4ff5dd62990ff..a66d0e2175f686d62a065babec403e35445fd363 100644
--- a/Source/core/dom/DOMError.h
+++ b/Source/core/dom/DOMError.h
@@ -59,10 +59,11 @@ public:
const String& name() const { return m_name; }
const String& message() const { return m_message; }
-private:
+protected:
explicit DOMError(const String& name);
- explicit DOMError(const String& name, const String& message);
+ DOMError(const String& name, const String& message);
+private:
const String m_name;
const String m_message;
};
« no previous file with comments | « LayoutTests/http/tests/filesystem/workers/resolve-url-expected.txt ('k') | Source/core/fileapi/FileError.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698