diff options
author | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-07-19 18:40:21 +0000 |
---|---|---|
committer | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-07-19 18:40:21 +0000 |
commit | f0a54b2f3f5afcf13f3ff981837e290c44e66680 (patch) | |
tree | 2c19b6aa7217deeb55bfeb6212ff11fbc0ddf813 /webkit/database | |
parent | 737402392b58715c71ed52b210ee62124f06b18c (diff) | |
download | chromium_src-f0a54b2f3f5afcf13f3ff981837e290c44e66680.zip chromium_src-f0a54b2f3f5afcf13f3ff981837e290c44e66680.tar.gz chromium_src-f0a54b2f3f5afcf13f3ff981837e290c44e66680.tar.bz2 |
Move app/sql/* files to sql/ directory.
I can't remove app/app.gyp and app/app_base.gypi yet because they are referenced
by third_party gyp files :(
BUG=72317
TEST=None
R=rsesek@chromium.org
move app/sql to sql
Review URL: http://codereview.chromium.org/7353026
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@93069 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/database')
-rw-r--r-- | webkit/database/database_tracker.cc | 10 | ||||
-rw-r--r-- | webkit/database/databases_table.cc | 4 | ||||
-rw-r--r-- | webkit/database/databases_table_unittest.cc | 6 | ||||
-rw-r--r-- | webkit/database/quota_table.cc | 4 | ||||
-rw-r--r-- | webkit/database/quota_table_unittest.cc | 6 |
5 files changed, 15 insertions, 15 deletions
diff --git a/webkit/database/database_tracker.cc b/webkit/database/database_tracker.cc index d01acda..742d3f3 100644 --- a/webkit/database/database_tracker.cc +++ b/webkit/database/database_tracker.cc @@ -7,11 +7,6 @@ #include <algorithm> #include <vector> -#include "app/sql/connection.h" -#include "app/sql/diagnostic_error_delegate.h" -#include "app/sql/meta_table.h" -#include "app/sql/statement.h" -#include "app/sql/transaction.h" #include "base/basictypes.h" #include "base/file_util.h" #include "base/message_loop_proxy.h" @@ -19,6 +14,11 @@ #include "base/string_number_conversions.h" #include "base/utf_string_conversions.h" #include "net/base/net_errors.h" +#include "sql/connection.h" +#include "sql/diagnostic_error_delegate.h" +#include "sql/meta_table.h" +#include "sql/statement.h" +#include "sql/transaction.h" #include "webkit/database/database_quota_client.h" #include "webkit/database/database_util.h" #include "webkit/database/databases_table.h" diff --git a/webkit/database/databases_table.cc b/webkit/database/databases_table.cc index fd174ce..ec77917 100644 --- a/webkit/database/databases_table.cc +++ b/webkit/database/databases_table.cc @@ -1,12 +1,12 @@ -// Copyright (c) 2009 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. #include "webkit/database/databases_table.h" -#include "app/sql/statement.h" #include "base/logging.h" #include "base/utf_string_conversions.h" +#include "sql/statement.h" namespace webkit_database { diff --git a/webkit/database/databases_table_unittest.cc b/webkit/database/databases_table_unittest.cc index 65ac2ef..da22440 100644 --- a/webkit/database/databases_table_unittest.cc +++ b/webkit/database/databases_table_unittest.cc @@ -1,11 +1,11 @@ -// Copyright (c) 2009 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. -#include "app/sql/connection.h" -#include "app/sql/statement.h" #include "base/string_util.h" #include "base/utf_string_conversions.h" +#include "sql/connection.h" +#include "sql/statement.h" #include "testing/gtest/include/gtest/gtest.h" #include "webkit/database/databases_table.h" diff --git a/webkit/database/quota_table.cc b/webkit/database/quota_table.cc index fd5813f..e9065ef 100644 --- a/webkit/database/quota_table.cc +++ b/webkit/database/quota_table.cc @@ -1,12 +1,12 @@ -// Copyright (c) 2009 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. #include "webkit/database/quota_table.h" -#include "app/sql/statement.h" #include "base/logging.h" #include "base/utf_string_conversions.h" +#include "sql/statement.h" namespace webkit_database { diff --git a/webkit/database/quota_table_unittest.cc b/webkit/database/quota_table_unittest.cc index de051f4..492c7b9 100644 --- a/webkit/database/quota_table_unittest.cc +++ b/webkit/database/quota_table_unittest.cc @@ -1,11 +1,11 @@ -// Copyright (c) 2009 The Chromium Authos. 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. -#include "app/sql/connection.h" -#include "app/sql/statement.h" #include "base/string_util.h" #include "base/utf_string_conversions.h" +#include "sql/connection.h" +#include "sql/statement.h" #include "testing/gtest/include/gtest/gtest.h" #include "webkit/database/quota_table.h" |