OLD | NEW |
---|---|
(Empty) | |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | |
2 // Use of this source code is governed by a BSD-style license that can be | |
3 // found in the LICENSE file. | |
4 | |
5 #include "config.h" | |
6 #include "core/dom/AutocompleteError.h" | |
7 | |
8 namespace WebCore { | |
9 | |
10 AutocompleteError::AutocompleteError(const String& reason) | |
11 : DOMException(0, "AutocompleteError") | |
12 , m_reason(reason) | |
13 { | |
14 ScriptWrappable::init(this); | |
15 } | |
16 | |
17 } // namespace WebCore | |
OLD | NEW |