| Index: chrome/browser/browsing_data_local_storage_helper.cc
|
| diff --git a/chrome/browser/browsing_data_local_storage_helper.cc b/chrome/browser/browsing_data_local_storage_helper.cc
|
| index f07c019479fa252ff6b3dd2a30c9d54f46e6745c..4a035d5ff03a43407febfcd392135e683fa0b857 100644
|
| --- a/chrome/browser/browsing_data_local_storage_helper.cc
|
| +++ b/chrome/browser/browsing_data_local_storage_helper.cc
|
| @@ -1,4 +1,4 @@
|
| -// Copyright (c) 2010 The Chromium Authors. All rights reserved.
|
| +// Copyright (c) 2011 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.
|
|
|
| @@ -16,6 +16,29 @@
|
| #include "third_party/WebKit/Source/WebKit/chromium/public/WebString.h"
|
| #include "webkit/glue/webkit_glue.h"
|
|
|
| +BrowsingDataLocalStorageHelper::LocalStorageInfo::LocalStorageInfo() {}
|
| +
|
| +BrowsingDataLocalStorageHelper::LocalStorageInfo::LocalStorageInfo(
|
| + const std::string& protocol,
|
| + const std::string& host,
|
| + unsigned short port,
|
| + const std::string& database_identifier,
|
| + const std::string& origin,
|
| + const FilePath& file_path,
|
| + int64 size,
|
| + base::Time last_modified)
|
| + : protocol(protocol),
|
| + host(host),
|
| + port(port),
|
| + database_identifier(database_identifier),
|
| + origin(origin),
|
| + file_path(file_path),
|
| + size(size),
|
| + last_modified(last_modified) {
|
| + }
|
| +
|
| +BrowsingDataLocalStorageHelper::LocalStorageInfo::~LocalStorageInfo() {}
|
| +
|
| BrowsingDataLocalStorageHelper::BrowsingDataLocalStorageHelper(
|
| Profile* profile)
|
| : profile_(profile),
|
|
|