| Index: chrome/browser/api/webdata/web_data_results.cc
|
| diff --git a/chrome/browser/api/webdata/web_data_results.cc b/chrome/browser/api/webdata/web_data_results.cc
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..704358aadcf135642f764fe6f9e1d3fe471dbfc2
|
| --- /dev/null
|
| +++ b/chrome/browser/api/webdata/web_data_results.cc
|
| @@ -0,0 +1,17 @@
|
| +// Copyright (c) 2012 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 "chrome/browser/api/webdata/web_data_results.h"
|
| +
|
| +WDTypedResult::WDTypedResult(WDResultType type)
|
| + : type_(type),
|
| + callback_(DestroyCallback()) {
|
| +}
|
| +
|
| +WDTypedResult::WDTypedResult(WDResultType type, const DestroyCallback& callback)
|
| + : type_(type),
|
| + callback_(callback) {
|
| +}
|
| +
|
| +WDTypedResult::~WDTypedResult() {}
|
|
|