| Index: content/renderer/date_time_suggestion.cc
|
| diff --git a/content/renderer/date_time_suggestion.cc b/content/renderer/date_time_suggestion.cc
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..3095cdbb63c39e0fb5b265c7d08f3470e865dfd7
|
| --- /dev/null
|
| +++ b/content/renderer/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/common/date_time_suggestion.h"
|
| +
|
| +#include "third_party/WebKit/public/web/WebDateTimeSuggestion.h"
|
| +
|
| +namespace content {
|
| +
|
| +DateTimeSuggestion::DateTimeSuggestion(
|
| + const blink::WebDateTimeSuggestion& suggestion)
|
| + : value(suggestion.value),
|
| + localized_value(suggestion.localizedValue),
|
| + label(suggestion.label) {
|
| +}
|
| +
|
| +} // namespace content
|
| +
|
|
|