From 0865c1342c3413c3b6f8d698105a9d7340d92cf2 Mon Sep 17 00:00:00 2001 From: "erg@google.com" Date: Fri, 28 Jan 2011 20:29:37 +0000 Subject: 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 --- chrome/browser/browsing_data_local_storage_helper.h | 16 ++++------------ 1 file changed, 4 insertions(+), 12 deletions(-) (limited to '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 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; -- cgit v1.1