diff options
author | avi@chromium.org <avi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-06-11 07:28:19 +0000 |
---|---|---|
committer | avi@chromium.org <avi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-06-11 07:28:19 +0000 |
commit | a4bbc1f9b821dee29561beb13bc8d42eadfb0f6a (patch) | |
tree | f88ce6b64021181379d4627c2c666dbd46286314 /sandbox | |
parent | 0d8db08c32735b1fd916495227802d933b308991 (diff) | |
download | chromium_src-a4bbc1f9b821dee29561beb13bc8d42eadfb0f6a.zip chromium_src-a4bbc1f9b821dee29561beb13bc8d42eadfb0f6a.tar.gz chromium_src-a4bbc1f9b821dee29561beb13bc8d42eadfb0f6a.tar.bz2 |
Use a direct include of strings headers in rlz/, sandbox/, skia/, sql/, sync/.
BUG=247723
TEST=none
TBR=ben@chromium.org
Review URL: https://chromiumcodereview.appspot.com/16358024
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@205458 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'sandbox')
-rw-r--r-- | sandbox/linux/suid/client/setuid_sandbox_client.cc | 2 | ||||
-rw-r--r-- | sandbox/linux/suid/client/setuid_sandbox_client_unittest.cc | 2 | ||||
-rw-r--r-- | sandbox/win/src/app_container.h | 2 | ||||
-rw-r--r-- | sandbox/win/src/app_container_test.cc | 2 | ||||
-rw-r--r-- | sandbox/win/src/handle_closer.h | 2 | ||||
-rw-r--r-- | sandbox/win/src/handle_closer_agent.h | 2 | ||||
-rw-r--r-- | sandbox/win/src/handle_closer_test.cc | 2 | ||||
-rw-r--r-- | sandbox/win/src/handle_policy_test.cc | 2 | ||||
-rw-r--r-- | sandbox/win/src/handle_table.h | 2 | ||||
-rw-r--r-- | sandbox/win/src/process_mitigations_test.cc | 2 | ||||
-rw-r--r-- | sandbox/win/src/process_policy_test.cc | 2 | ||||
-rw-r--r-- | sandbox/win/src/sandbox_policy_base.h | 2 | ||||
-rw-r--r-- | sandbox/win/wow_helper/wow_helper.cc | 2 |
13 files changed, 13 insertions, 13 deletions
diff --git a/sandbox/linux/suid/client/setuid_sandbox_client.cc b/sandbox/linux/suid/client/setuid_sandbox_client.cc index 7a174ef..34231d4 100644 --- a/sandbox/linux/suid/client/setuid_sandbox_client.cc +++ b/sandbox/linux/suid/client/setuid_sandbox_client.cc @@ -10,7 +10,7 @@ #include "base/logging.h" #include "base/memory/scoped_ptr.h" #include "base/posix/eintr_wrapper.h" -#include "base/string_number_conversions.h" +#include "base/strings/string_number_conversions.h" #include "sandbox/linux/suid/common/sandbox.h" #include "sandbox/linux/suid/common/suid_unsafe_environment_variables.h" diff --git a/sandbox/linux/suid/client/setuid_sandbox_client_unittest.cc b/sandbox/linux/suid/client/setuid_sandbox_client_unittest.cc index 293f423..552dc4b 100644 --- a/sandbox/linux/suid/client/setuid_sandbox_client_unittest.cc +++ b/sandbox/linux/suid/client/setuid_sandbox_client_unittest.cc @@ -5,7 +5,7 @@ #include "base/environment.h" #include "base/logging.h" #include "base/memory/scoped_ptr.h" -#include "base/string_number_conversions.h" +#include "base/strings/string_number_conversions.h" #include "testing/gtest/include/gtest/gtest.h" #include "sandbox/linux/suid/common/sandbox.h" diff --git a/sandbox/win/src/app_container.h b/sandbox/win/src/app_container.h index 5ff0b9b..34b43e95f 100644 --- a/sandbox/win/src/app_container.h +++ b/sandbox/win/src/app_container.h @@ -10,7 +10,7 @@ #include <vector> #include "base/memory/scoped_ptr.h" -#include "base/string16.h" +#include "base/strings/string16.h" #include "sandbox/win/src/sandbox_types.h" namespace base { diff --git a/sandbox/win/src/app_container_test.cc b/sandbox/win/src/app_container_test.cc index 0d4d177..3b33ca5 100644 --- a/sandbox/win/src/app_container_test.cc +++ b/sandbox/win/src/app_container_test.cc @@ -8,7 +8,7 @@ #include <atlbase.h> #include <atlsecurity.h> -#include "base/string16.h" +#include "base/strings/string16.h" #include "base/win/scoped_handle.h" #include "base/win/windows_version.h" #include "sandbox/win/src/sync_policy_test.h" diff --git a/sandbox/win/src/handle_closer.h b/sandbox/win/src/handle_closer.h index b43e50f..a6f81d5 100644 --- a/sandbox/win/src/handle_closer.h +++ b/sandbox/win/src/handle_closer.h @@ -9,7 +9,7 @@ #include <set> #include "base/basictypes.h" -#include "base/string16.h" +#include "base/strings/string16.h" #include "sandbox/win/src/interception.h" #include "sandbox/win/src/sandbox_types.h" #include "sandbox/win/src/target_process.h" diff --git a/sandbox/win/src/handle_closer_agent.h b/sandbox/win/src/handle_closer_agent.h index 602f327..50ebf89 100644 --- a/sandbox/win/src/handle_closer_agent.h +++ b/sandbox/win/src/handle_closer_agent.h @@ -6,7 +6,7 @@ #define SANDBOX_SRC_HANDLE_CLOSER_AGENT_H_ #include "base/basictypes.h" -#include "base/string16.h" +#include "base/strings/string16.h" #include "sandbox/win/src/handle_closer.h" #include "sandbox/win/src/sandbox_types.h" diff --git a/sandbox/win/src/handle_closer_test.cc b/sandbox/win/src/handle_closer_test.cc index b35ff5e..ba0e33a 100644 --- a/sandbox/win/src/handle_closer_test.cc +++ b/sandbox/win/src/handle_closer_test.cc @@ -2,7 +2,7 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. -#include "base/stringprintf.h" +#include "base/strings/stringprintf.h" #include "base/win/scoped_handle.h" #include "sandbox/win/src/handle_closer_agent.h" #include "sandbox/win/src/sandbox.h" diff --git a/sandbox/win/src/handle_policy_test.cc b/sandbox/win/src/handle_policy_test.cc index 65efbc85..11e888a 100644 --- a/sandbox/win/src/handle_policy_test.cc +++ b/sandbox/win/src/handle_policy_test.cc @@ -2,7 +2,7 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. -#include "base/stringprintf.h" +#include "base/strings/stringprintf.h" #include "sandbox/win/src/handle_policy.h" #include "sandbox/win/src/nt_internals.h" #include "sandbox/win/src/sandbox.h" diff --git a/sandbox/win/src/handle_table.h b/sandbox/win/src/handle_table.h index acdc88d..21ff80f 100644 --- a/sandbox/win/src/handle_table.h +++ b/sandbox/win/src/handle_table.h @@ -9,7 +9,7 @@ #include <vector> #include "base/basictypes.h" -#include "base/string16.h" +#include "base/strings/string16.h" #include "sandbox/win/src/nt_internals.h" namespace sandbox { diff --git a/sandbox/win/src/process_mitigations_test.cc b/sandbox/win/src/process_mitigations_test.cc index 69b158d..f1274c5 100644 --- a/sandbox/win/src/process_mitigations_test.cc +++ b/sandbox/win/src/process_mitigations_test.cc @@ -2,7 +2,7 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. -#include "base/stringprintf.h" +#include "base/strings/stringprintf.h" #include "base/win/scoped_handle.h" #include "base/win/windows_version.h" diff --git a/sandbox/win/src/process_policy_test.cc b/sandbox/win/src/process_policy_test.cc index 7e3d460..babe321 100644 --- a/sandbox/win/src/process_policy_test.cc +++ b/sandbox/win/src/process_policy_test.cc @@ -5,7 +5,7 @@ #include <memory> #include <string> -#include "base/string16.h" +#include "base/strings/string16.h" #include "base/strings/sys_string_conversions.h" #include "base/win/scoped_handle.h" #include "base/win/scoped_process_information.h" diff --git a/sandbox/win/src/sandbox_policy_base.h b/sandbox/win/src/sandbox_policy_base.h index 0bb906e..d56501d 100644 --- a/sandbox/win/src/sandbox_policy_base.h +++ b/sandbox/win/src/sandbox_policy_base.h @@ -12,7 +12,7 @@ #include "base/basictypes.h" #include "base/compiler_specific.h" -#include "base/string16.h" +#include "base/strings/string16.h" #include "sandbox/win/src/crosscall_server.h" #include "sandbox/win/src/handle_closer.h" #include "sandbox/win/src/ipc_tags.h" diff --git a/sandbox/win/wow_helper/wow_helper.cc b/sandbox/win/wow_helper/wow_helper.cc index 9d5a5ea..2a27a85 100644 --- a/sandbox/win/wow_helper/wow_helper.cc +++ b/sandbox/win/wow_helper/wow_helper.cc @@ -17,7 +17,7 @@ namespace { -// Grabbed from base/string_util.h +// Grabbed from base/strings/string_util.h template <class string_type> inline typename string_type::value_type* WriteInto(string_type* str, size_t length_with_null) { |