| Index: chrome/browser/browsing_data_local_storage_helper.h
|
| diff --git a/chrome/browser/browsing_data_local_storage_helper.h b/chrome/browser/browsing_data_local_storage_helper.h
|
| index 1f610701047c5557430ac422172925b43e12a410..f363542a05e7b4d38e6c1eb1976388fa6f9324f4 100644
|
| --- a/chrome/browser/browsing_data_local_storage_helper.h
|
| +++ b/chrome/browser/browsing_data_local_storage_helper.h
|
| @@ -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.
|
|
|
| @@ -30,7 +30,7 @@ class BrowsingDataLocalStorageHelper
|
| public:
|
| // Contains detailed information about local storage.
|
| struct LocalStorageInfo {
|
| - LocalStorageInfo() {}
|
| + LocalStorageInfo();
|
| LocalStorageInfo(
|
| const std::string& protocol,
|
| const std::string& host,
|
| @@ -39,16 +39,8 @@ class BrowsingDataLocalStorageHelper
|
| 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) {
|
| - }
|
| + base::Time last_modified);
|
| + ~LocalStorageInfo();
|
|
|
| bool IsFileSchemeData() {
|
| return protocol == chrome::kFileScheme;
|
|
|