diff options
author | bnc <bnc@chromium.org> | 2015-03-09 13:47:44 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2015-03-09 20:48:48 +0000 |
commit | 2220bd6553b4aae764ed66b24f5aa6e398c70b68 (patch) | |
tree | 42a41c557a79bf89067e9db4ede1a77d270e1cf8 /base/pending_task.h | |
parent | 79f7a57302cae3f7afcd53c6dff542e32bada999 (diff) | |
download | chromium_src-2220bd6553b4aae764ed66b24f5aa6e398c70b68.zip chromium_src-2220bd6553b4aae764ed66b24f5aa6e398c70b68.tar.gz chromium_src-2220bd6553b4aae764ed66b24f5aa6e398c70b68.tar.bz2 |
Revert of base: Fix/add header #ifndef guards. (patchset #2 id:20001 of https://codereview.chromium.org/985003004/)
Reason for revert:
This seems to be causing tree closing compile failure https://build.chromium.org/p/chromium/builders/Android/builds/36135/steps/compile/logs/stdio.
Original issue's description:
> base: Fix/add header #ifndef guards.
>
> Header guards should be defined based on the path and file name of the
> header file. Some headers have it wrong, some are missing the guards,
> and some just have the matching comment wrong.
>
> R=Nico
> BUG=464816
>
> Committed: https://crrev.com/301b392761fd8f66f3a701ab1dd011c6e7a55e19
> Cr-Commit-Position: refs/heads/master@{#319722}
TBR=thakis@chromium.org,danakj@chromium.org
NOPRESUBMIT=true
NOTREECHECKS=true
NOTRY=true
BUG=464816
Review URL: https://codereview.chromium.org/989343002
Cr-Commit-Position: refs/heads/master@{#319728}
Diffstat (limited to 'base/pending_task.h')
-rw-r--r-- | base/pending_task.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/base/pending_task.h b/base/pending_task.h index fddfc86..a2edc69 100644 --- a/base/pending_task.h +++ b/base/pending_task.h @@ -2,8 +2,8 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. -#ifndef BASE_PENDING_TASK_H_ -#define BASE_PENDING_TASK_H_ +#ifndef PENDING_TASK_H_ +#define PENDING_TASK_H_ #include <queue> @@ -57,4 +57,4 @@ typedef std::priority_queue<base::PendingTask> DelayedTaskQueue; } // namespace base -#endif // BASE_PENDING_TASK_H_ +#endif // PENDING_TASK_H_ |