| Index: content/public/common/date_time_suggestion.cc
|
| diff --git a/content/public/common/date_time_suggestion.cc b/content/public/common/date_time_suggestion.cc
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..f9d5546c5760b23fc063768be946a03f7a28f97d
|
| --- /dev/null
|
| +++ b/content/public/common/date_time_suggestion.cc
|
| @@ -0,0 +1,19 @@
|
| +// Copyright 2013 The Chromium Authors. All rights reserved.
|
| +// Use of this source code is governed by a BSD-style license that can be
|
| +// found in the LICENSE file.
|
| +
|
| +#include "content/public/common/date_time_suggestion.h"
|
| +
|
| +namespace content {
|
| +
|
| +DateTimeSuggestion::DateTimeSuggestion() {
|
| +}
|
| +
|
| +DateTimeSuggestion::DateTimeSuggestion(
|
| + const WebKit::WebDateTimeSuggestion& suggestion)
|
| + : value(suggestion.value),
|
| + localizedValue(suggestion.localizedValue),
|
| + label(suggestion.label) {
|
| +}
|
| +
|
| +} // namespace content
|
|
|