diff options
Diffstat (limited to 'webkit/quota')
-rw-r--r-- | webkit/quota/quota_database.h | 2 | ||||
-rw-r--r-- | webkit/quota/quota_database_unittest.cc | 2 | ||||
-rw-r--r-- | webkit/quota/special_storage_policy.h | 4 |
3 files changed, 4 insertions, 4 deletions
diff --git a/webkit/quota/quota_database.h b/webkit/quota/quota_database.h index 6aa1603..94b5181 100644 --- a/webkit/quota/quota_database.h +++ b/webkit/quota/quota_database.h @@ -10,7 +10,7 @@ #include "base/basictypes.h" #include "base/file_path.h" #include "base/gtest_prod_util.h" -#include "base/scoped_ptr.h" +#include "base/memory/scoped_ptr.h" #include "base/time.h" namespace sql { diff --git a/webkit/quota/quota_database_unittest.cc b/webkit/quota/quota_database_unittest.cc index 836ee16..c5905ed 100644 --- a/webkit/quota/quota_database_unittest.cc +++ b/webkit/quota/quota_database_unittest.cc @@ -6,7 +6,7 @@ #include "app/sql/connection.h" #include "base/file_util.h" -#include "base/scoped_temp_dir.h" +#include "base/memory/scoped_temp_dir.h" #include "googleurl/src/gurl.h" #include "webkit/quota/quota_database.h" diff --git a/webkit/quota/special_storage_policy.h b/webkit/quota/special_storage_policy.h index 99cc643d..e694c4c 100644 --- a/webkit/quota/special_storage_policy.h +++ b/webkit/quota/special_storage_policy.h @@ -1,11 +1,11 @@ -// 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. #ifndef WEBKIT_QUOTA_SPECIAL_STORAGE_POLICY_H_ #define WEBKIT_QUOTA_SPECIAL_STORAGE_POLICY_H_ -#include "base/ref_counted.h" +#include "base/memory/ref_counted.h" class GURL; |