summaryrefslogtreecommitdiffstats
path: root/Source/WebKit/chromium/public/WebTextCheckingResult.h
diff options
context:
space:
mode:
Diffstat (limited to 'Source/WebKit/chromium/public/WebTextCheckingResult.h')
-rw-r--r--Source/WebKit/chromium/public/WebTextCheckingResult.h24
1 files changed, 9 insertions, 15 deletions
diff --git a/Source/WebKit/chromium/public/WebTextCheckingResult.h b/Source/WebKit/chromium/public/WebTextCheckingResult.h
index 4d16d31..79fbb56 100644
--- a/Source/WebKit/chromium/public/WebTextCheckingResult.h
+++ b/Source/WebKit/chromium/public/WebTextCheckingResult.h
@@ -36,28 +36,22 @@
namespace WebKit {
// A checked entry of text checking.
-class WebTextCheckingResult {
-public:
+struct WebTextCheckingResult {
enum Error {
ErrorSpelling = 1 << 0,
ErrorGrammar = 1 << 1
};
- Error error() const { return m_error; }
- int position() const { return m_position; }
- int length() const { return m_length; }
-
- explicit WebTextCheckingResult(Error error = ErrorSpelling, int position = 0, int length = 0)
- : m_error(error)
- , m_position(position)
- , m_length(length)
+ explicit WebTextCheckingResult(Error e = ErrorSpelling, int p = 0, int l = 0)
+ : error(e)
+ , position(p)
+ , length(l)
{
}
-
-private:
- Error m_error;
- int m_position;
- int m_length;
+
+ Error error;
+ int position;
+ int length;
};
} // namespace WebKit