Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: compiled/ElemHideException.cpp

Issue 29333474: Issue 4125 - [emscripten] Convert filter classes to C++ (Closed)
Patch Set: Rebased, addressed comments, changed StringMap::find() return value Created Feb. 18, 2016, 4:02 p.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: compiled/ElemHideException.cpp
===================================================================
new file mode 100644
--- /dev/null
+++ b/compiled/ElemHideException.cpp
@@ -0,0 +1,12 @@
+#include "ElemHideException.h"
+
+ElemHideException::ElemHideException(const String& text,
+ const ElemHideBaseData& data)
+ : ElemHideBase(text, data)
+{
+}
+
+Filter::Type ElemHideException::GetType() const
+{
+ return Type::ELEMHIDEEXCEPTION;
+}

Powered by Google App Engine
This is Rietveld