diff options
author | erg@google.com <erg@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-01-28 20:29:37 +0000 |
---|---|---|
committer | erg@google.com <erg@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-01-28 20:29:37 +0000 |
commit | 0865c1342c3413c3b6f8d698105a9d7340d92cf2 (patch) | |
tree | f89ef79c9b6d86290fea29f9db4d88f421a00da9 /chrome/browser/browsing_data_local_storage_helper.h | |
parent | 68f3099b071756a717e850f4d3c1cb8a0ef00c6e (diff) | |
download | chromium_src-0865c1342c3413c3b6f8d698105a9d7340d92cf2.zip chromium_src-0865c1342c3413c3b6f8d698105a9d7340d92cf2.tar.gz chromium_src-0865c1342c3413c3b6f8d698105a9d7340d92cf2.tar.bz2 |
Part 2 of repairing regressions to my old clang check plugins so Nico can
deploy the clang plugins to the waterfall/trybots.
BUG=none
TEST=compiles
Review URL: http://codereview.chromium.org/6272025
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@73014 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/browsing_data_local_storage_helper.h')
-rw-r--r-- | chrome/browser/browsing_data_local_storage_helper.h | 16 |
1 files changed, 4 insertions, 12 deletions
diff --git a/chrome/browser/browsing_data_local_storage_helper.h b/chrome/browser/browsing_data_local_storage_helper.h index 1f61070..f363542 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; |