diff options
author | ajwong@chromium.org <ajwong@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-07-11 19:01:43 +0000 |
---|---|---|
committer | ajwong@chromium.org <ajwong@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-07-11 19:01:43 +0000 |
commit | 01c86ece0232e9b15bff05f1ee508c7f6bdc2ef0 (patch) | |
tree | ce78aa58908c7bc64bcb3596bd1298b872b85701 /base/threading | |
parent | a19317f99fd8f35cd2bf8ebe3d0f34dc71866574 (diff) | |
download | chromium_src-01c86ece0232e9b15bff05f1ee508c7f6bdc2ef0.zip chromium_src-01c86ece0232e9b15bff05f1ee508c7f6bdc2ef0.tar.gz chromium_src-01c86ece0232e9b15bff05f1ee508c7f6bdc2ef0.tar.bz2 |
Remove the rest of #pragma once in one big CL.
For context see this thread:
https://groups.google.com/a/chromium.org/forum/?fromgroups#!topic/chromium-dev/RMcVNGjB4II
TBR=thakis,pkasting,jam
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@146163 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/threading')
-rw-r--r-- | base/threading/non_thread_safe.h | 1 | ||||
-rw-r--r-- | base/threading/non_thread_safe_impl.h | 1 | ||||
-rw-r--r-- | base/threading/platform_thread.h | 1 | ||||
-rw-r--r-- | base/threading/post_task_and_reply_impl.h | 1 | ||||
-rw-r--r-- | base/threading/sequenced_worker_pool.h | 1 | ||||
-rw-r--r-- | base/threading/sequenced_worker_pool_task_runner.h | 1 | ||||
-rw-r--r-- | base/threading/simple_thread.h | 1 | ||||
-rw-r--r-- | base/threading/thread.h | 1 | ||||
-rw-r--r-- | base/threading/thread_checker.h | 1 | ||||
-rw-r--r-- | base/threading/thread_checker_impl.h | 1 | ||||
-rw-r--r-- | base/threading/thread_collision_warner.h | 1 | ||||
-rw-r--r-- | base/threading/thread_local.h | 1 | ||||
-rw-r--r-- | base/threading/thread_local_storage.h | 1 | ||||
-rw-r--r-- | base/threading/watchdog.h | 1 | ||||
-rw-r--r-- | base/threading/worker_pool.h | 1 | ||||
-rw-r--r-- | base/threading/worker_pool_posix.h | 1 |
16 files changed, 0 insertions, 16 deletions
diff --git a/base/threading/non_thread_safe.h b/base/threading/non_thread_safe.h index 2f44dca..cf7a418 100644 --- a/base/threading/non_thread_safe.h +++ b/base/threading/non_thread_safe.h @@ -4,7 +4,6 @@ #ifndef BASE_THREADING_NON_THREAD_SAFE_H_ #define BASE_THREADING_NON_THREAD_SAFE_H_ -#pragma once // Classes deriving from NonThreadSafe may need to suppress MSVC warning 4275: // non dll-interface class 'Bar' used as base for dll-interface class 'Foo'. diff --git a/base/threading/non_thread_safe_impl.h b/base/threading/non_thread_safe_impl.h index 71faeb2..a3a356d 100644 --- a/base/threading/non_thread_safe_impl.h +++ b/base/threading/non_thread_safe_impl.h @@ -4,7 +4,6 @@ #ifndef BASE_THREADING_NON_THREAD_SAFE_IMPL_H_ #define BASE_THREADING_NON_THREAD_SAFE_IMPL_H_ -#pragma once #include "base/base_export.h" #include "base/threading/thread_checker_impl.h" diff --git a/base/threading/platform_thread.h b/base/threading/platform_thread.h index de552c8..576695a 100644 --- a/base/threading/platform_thread.h +++ b/base/threading/platform_thread.h @@ -8,7 +8,6 @@ #ifndef BASE_THREADING_PLATFORM_THREAD_H_ #define BASE_THREADING_PLATFORM_THREAD_H_ -#pragma once #include "base/base_export.h" #include "base/basictypes.h" diff --git a/base/threading/post_task_and_reply_impl.h b/base/threading/post_task_and_reply_impl.h index fe19c8e..076a46d 100644 --- a/base/threading/post_task_and_reply_impl.h +++ b/base/threading/post_task_and_reply_impl.h @@ -7,7 +7,6 @@ #ifndef BASE_THREADING_POST_TASK_AND_REPLY_IMPL_H_ #define BASE_THREADING_POST_TASK_AND_REPLY_IMPL_H_ -#pragma once #include "base/callback_forward.h" #include "base/location.h" diff --git a/base/threading/sequenced_worker_pool.h b/base/threading/sequenced_worker_pool.h index 73c670f..e273d54 100644 --- a/base/threading/sequenced_worker_pool.h +++ b/base/threading/sequenced_worker_pool.h @@ -4,7 +4,6 @@ #ifndef BASE_THREADING_SEQUENCED_WORKER_POOL_H_ #define BASE_THREADING_SEQUENCED_WORKER_POOL_H_ -#pragma once #include <cstddef> #include <string> diff --git a/base/threading/sequenced_worker_pool_task_runner.h b/base/threading/sequenced_worker_pool_task_runner.h index 068fb3e..6d6ff94 100644 --- a/base/threading/sequenced_worker_pool_task_runner.h +++ b/base/threading/sequenced_worker_pool_task_runner.h @@ -4,7 +4,6 @@ #ifndef BASE_THREADING_SEQUENCED_WORKER_POOL_TASK_RUNNER_H_ #define BASE_THREADING_SEQUENCED_WORKER_POOL_TASK_RUNNER_H_ -#pragma once #include "base/basictypes.h" #include "base/callback_forward.h" diff --git a/base/threading/simple_thread.h b/base/threading/simple_thread.h index 47d063a..df03ce1 100644 --- a/base/threading/simple_thread.h +++ b/base/threading/simple_thread.h @@ -39,7 +39,6 @@ #ifndef BASE_THREADING_SIMPLE_THREAD_H_ #define BASE_THREADING_SIMPLE_THREAD_H_ -#pragma once #include <string> #include <queue> diff --git a/base/threading/thread.h b/base/threading/thread.h index 054a8f6..7296854 100644 --- a/base/threading/thread.h +++ b/base/threading/thread.h @@ -4,7 +4,6 @@ #ifndef BASE_THREAD_H_ #define BASE_THREAD_H_ -#pragma once #include <string> diff --git a/base/threading/thread_checker.h b/base/threading/thread_checker.h index 9c79958..5a8ef22 100644 --- a/base/threading/thread_checker.h +++ b/base/threading/thread_checker.h @@ -4,7 +4,6 @@ #ifndef BASE_THREADING_THREAD_CHECKER_H_ #define BASE_THREADING_THREAD_CHECKER_H_ -#pragma once // Apart from debug builds, we also enable the thread checker in // builds with DCHECK_ALWAYS_ON so that trybots and waterfall bots diff --git a/base/threading/thread_checker_impl.h b/base/threading/thread_checker_impl.h index 4295560..24361c8 100644 --- a/base/threading/thread_checker_impl.h +++ b/base/threading/thread_checker_impl.h @@ -4,7 +4,6 @@ #ifndef BASE_THREADING_THREAD_CHECKER_IMPL_H_ #define BASE_THREADING_THREAD_CHECKER_IMPL_H_ -#pragma once #include "base/base_export.h" #include "base/synchronization/lock.h" diff --git a/base/threading/thread_collision_warner.h b/base/threading/thread_collision_warner.h index 2e3d3cc4..2181cbd 100644 --- a/base/threading/thread_collision_warner.h +++ b/base/threading/thread_collision_warner.h @@ -4,7 +4,6 @@ #ifndef BASE_THREADING_THREAD_COLLISION_WARNER_H_ #define BASE_THREADING_THREAD_COLLISION_WARNER_H_ -#pragma once #include <memory> diff --git a/base/threading/thread_local.h b/base/threading/thread_local.h index dcad915..6561420 100644 --- a/base/threading/thread_local.h +++ b/base/threading/thread_local.h @@ -47,7 +47,6 @@ #ifndef BASE_THREADING_THREAD_LOCAL_H_ #define BASE_THREADING_THREAD_LOCAL_H_ -#pragma once #include "base/base_export.h" #include "base/basictypes.h" diff --git a/base/threading/thread_local_storage.h b/base/threading/thread_local_storage.h index ca422b9..eb5648f 100644 --- a/base/threading/thread_local_storage.h +++ b/base/threading/thread_local_storage.h @@ -4,7 +4,6 @@ #ifndef BASE_THREADING_THREAD_LOCAL_STORAGE_H_ #define BASE_THREADING_THREAD_LOCAL_STORAGE_H_ -#pragma once #include "base/base_export.h" #include "base/basictypes.h" diff --git a/base/threading/watchdog.h b/base/threading/watchdog.h index 8e43ac7..5b0b210 100644 --- a/base/threading/watchdog.h +++ b/base/threading/watchdog.h @@ -17,7 +17,6 @@ #ifndef BASE_THREADING_WATCHDOG_H_ #define BASE_THREADING_WATCHDOG_H_ -#pragma once #include <string> diff --git a/base/threading/worker_pool.h b/base/threading/worker_pool.h index 93beeeb..333b495 100644 --- a/base/threading/worker_pool.h +++ b/base/threading/worker_pool.h @@ -4,7 +4,6 @@ #ifndef BASE_THREADING_WORKER_POOL_H_ #define BASE_THREADING_WORKER_POOL_H_ -#pragma once #include "base/base_export.h" #include "base/callback_forward.h" diff --git a/base/threading/worker_pool_posix.h b/base/threading/worker_pool_posix.h index eca113a..36e3f4bf 100644 --- a/base/threading/worker_pool_posix.h +++ b/base/threading/worker_pool_posix.h @@ -23,7 +23,6 @@ #ifndef BASE_THREADING_WORKER_POOL_POSIX_H_ #define BASE_THREADING_WORKER_POOL_POSIX_H_ -#pragma once #include <queue> #include <string> |