diff options
author | mrossetti@chromium.org <mrossetti@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-02-10 19:01:19 +0000 |
---|---|---|
committer | mrossetti@chromium.org <mrossetti@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-02-10 19:01:19 +0000 |
commit | de7d3e2b40cc6ed38882a93ae4db60918cbcf181 (patch) | |
tree | 3bf4f99516f5f842f346b04acce9b12033be9887 /chrome/browser/importer/safari_importer.h | |
parent | bce86b286647062415396eb6bd814d328ce70c4d (diff) | |
download | chromium_src-de7d3e2b40cc6ed38882a93ae4db60918cbcf181.zip chromium_src-de7d3e2b40cc6ed38882a93ae4db60918cbcf181.tar.gz chromium_src-de7d3e2b40cc6ed38882a93ae4db60918cbcf181.tar.bz2 |
Use URLRows rather than std::vector<URLRow>. Also, there is an equivalent TypedUrlVector in a limited sphere so replace that with history::URLRows as well.
BUG=None
TEST=None
R=pkasting@chromium.org,atwilson@chromium.org
Review URL: https://chromiumcodereview.appspot.com/9370036
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@121484 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/importer/safari_importer.h')
-rw-r--r-- | chrome/browser/importer/safari_importer.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/browser/importer/safari_importer.h b/chrome/browser/importer/safari_importer.h index 2c34bc5..356d1e2 100644 --- a/chrome/browser/importer/safari_importer.h +++ b/chrome/browser/importer/safari_importer.h @@ -1,4 +1,4 @@ -// Copyright (c) 2011 The Chromium Authors. All rights reserved. +// 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. @@ -92,7 +92,7 @@ class SafariImporter : public Importer { double HistoryTimeToEpochTime(NSString* history_time); // Parses Safari's history and loads it into the input array. - void ParseHistoryItems(std::vector<history::URLRow>* history_items); + void ParseHistoryItems(history::URLRows* history_items); // Opens the favicon database file. bool OpenDatabase(sql::Connection* db); |