summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authortfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-03-30 03:23:22 +0000
committertfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-03-30 03:23:22 +0000
commit042723b18a66026688c9d94dd757ee59f7b5a657 (patch)
treeaed2979405210d08c291172bc7ab5a6ec5d9b57a
parentb25a26322c98c0f4da4725118ee002b01a94378f (diff)
downloadchromium_src-042723b18a66026688c9d94dd757ee59f7b5a657.zip
chromium_src-042723b18a66026688c9d94dd757ee59f7b5a657.tar.gz
chromium_src-042723b18a66026688c9d94dd757ee59f7b5a657.tar.bz2
Cleanup: Remove forward declarations of "struct sqlite3".
BUG=77634 TEST=None R=avi@chromium.org,brettw@chromium.org Review URL: http://codereview.chromium.org/6772011 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@79788 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r--chrome/browser/history/text_database_manager.h4
-rw-r--r--chrome/browser/password_manager/login_database.h4
-rw-r--r--chrome/browser/sync/syncable/syncable_id.h7
3 files changed, 3 insertions, 12 deletions
diff --git a/chrome/browser/history/text_database_manager.h b/chrome/browser/history/text_database_manager.h
index 50cfeb5..952edc6 100644
--- a/chrome/browser/history/text_database_manager.h
+++ b/chrome/browser/history/text_database_manager.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.
@@ -20,8 +20,6 @@
#include "chrome/browser/history/url_database.h"
#include "content/common/mru_cache.h"
-struct sqlite3;
-
namespace history {
class HistoryPublisher;
diff --git a/chrome/browser/password_manager/login_database.h b/chrome/browser/password_manager/login_database.h
index 28131ed..f4fe724 100644
--- a/chrome/browser/password_manager/login_database.h
+++ b/chrome/browser/password_manager/login_database.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.
@@ -15,8 +15,6 @@
#include "base/string16.h"
#include "webkit/glue/password_form.h"
-struct sqlite3;
-
// Interface to the database storage of login information, intended as a helper
// for PasswordStore on platforms that need internal storage of some or all of
// the login information.
diff --git a/chrome/browser/sync/syncable/syncable_id.h b/chrome/browser/sync/syncable/syncable_id.h
index e9f64a7..33ed3b8 100644
--- a/chrome/browser/sync/syncable/syncable_id.h
+++ b/chrome/browser/sync/syncable/syncable_id.h
@@ -13,17 +13,12 @@
#include "base/hash_tables.h"
-extern "C" {
-struct sqlite3;
-struct sqlite3_stmt;
-}
-
class StringValue;
namespace syncable {
struct EntryKernel;
class Id;
-} // namespace syncable
+}
class MockConnectionManager;
class SQLStatement;