summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorthakis <thakis@chromium.org>2015-03-26 00:30:52 -0700
committerCommit bot <commit-bot@chromium.org>2015-03-26 07:31:50 +0000
commit1eeacc846d0123d761bb47627227a9f4b45dc863 (patch)
tree00296023b396334803beb136b09c9afccad7be5b
parentc1d79cd9c6a42d39a380376762cb8ad0061d1ca6 (diff)
downloadchromium_src-1eeacc846d0123d761bb47627227a9f4b45dc863.zip
chromium_src-1eeacc846d0123d761bb47627227a9f4b45dc863.tar.gz
chromium_src-1eeacc846d0123d761bb47627227a9f4b45dc863.tar.bz2
Fix some blooeans. No behavior change.
BUG=none Review URL: https://codereview.chromium.org/1008563004 Cr-Commit-Position: refs/heads/master@{#322337}
-rw-r--r--ash/accessibility_delegate.h2
-rw-r--r--extensions/renderer/script_injector.h2
-rw-r--r--media/filters/decrypting_demuxer_stream_unittest.cc2
3 files changed, 3 insertions, 3 deletions
diff --git a/ash/accessibility_delegate.h b/ash/accessibility_delegate.h
index 8e7e286..cb821c8 100644
--- a/ash/accessibility_delegate.h
+++ b/ash/accessibility_delegate.h
@@ -44,7 +44,7 @@ class ASH_EXPORT AccessibilityDelegate {
// Invoked to enable Large Cursor.
virtual void SetLargeCursorEnabled(bool enabled) = 0;
- // Returns ture if Large Cursor is enabled.
+ // Returns true if Large Cursor is enabled.
virtual bool IsLargeCursorEnabled() const = 0;
// Invoked to enable autoclick.
diff --git a/extensions/renderer/script_injector.h b/extensions/renderer/script_injector.h
index 33922b6..1c98aa0 100644
--- a/extensions/renderer/script_injector.h
+++ b/extensions/renderer/script_injector.h
@@ -49,7 +49,7 @@ class ScriptInjector {
// Returns true if the script is running inside a user gesture.
virtual bool IsUserGesture() const = 0;
- // Returns ture if the script expects results.
+ // Returns true if the script expects results.
virtual bool ExpectsResults() const = 0;
// Returns true if the script should inject JS source at the given
diff --git a/media/filters/decrypting_demuxer_stream_unittest.cc b/media/filters/decrypting_demuxer_stream_unittest.cc
index 3cba1f7..e5d2567 100644
--- a/media/filters/decrypting_demuxer_stream_unittest.cc
+++ b/media/filters/decrypting_demuxer_stream_unittest.cc
@@ -29,7 +29,7 @@ static const uint8 kFakeKeyId[] = { 0x4b, 0x65, 0x79, 0x20, 0x49, 0x44 };
static const uint8 kFakeIv[DecryptConfig::kDecryptionKeySize] = { 0 };
// Create a fake non-empty buffer in an encrypted stream. When |is_clear| is
-// ture, the buffer is not encrypted (signaled by an empty IV).
+// true, the buffer is not encrypted (signaled by an empty IV).
static scoped_refptr<DecoderBuffer> CreateFakeEncryptedStreamBuffer(
bool is_clear) {
scoped_refptr<DecoderBuffer> buffer(new DecoderBuffer(kFakeBufferSize));