Skip to content

Commit

Permalink
Fix some blooeans. No behavior change.
Browse files Browse the repository at this point in the history
BUG=none

Review URL: https://codereview.chromium.org/1008563004

Cr-Commit-Position: refs/heads/master@{#322337}
  • Loading branch information
nico authored and Commit bot committed Mar 26, 2015
1 parent c1d79cd commit 1eeacc8
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion ash/accessibility_delegate.h
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion extensions/renderer/script_injector.h
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion media/filters/decrypting_demuxer_stream_unittest.cc
Original file line number Diff line number Diff line change
Expand Up @@ -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));
Expand Down

0 comments on commit 1eeacc8

Please sign in to comment.