Commit f889c1ed authored by Lei Zhang's avatar Lei Zhang Committed by Commit Bot

Fix typos for "outer".

s/outter/outer/

Bug: 567351
Change-Id: I84df95a3e0955e8c6ba2c01e2192d30be3e28d25
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2261476Reviewed-by: default avatarScott Violet <sky@chromium.org>
Commit-Queue: Lei Zhang <thestig@chromium.org>
Cr-Commit-Position: refs/heads/master@{#781637}
parent 794312ec
This is the same test as rsa-pkcs1-sha256.pem except the SPKI has been encoded This is the same test as rsa-pkcs1-sha256.pem except the SPKI has been encoded
using a non-minimal length for the outtermost SEQUENCE. using a non-minimal length for the outermost SEQUENCE.
Under DER, the tag-length-value encodings should be minimal and hence this should fail. Under DER, the tag-length-value encodings should be minimal and hence this should fail.
......
...@@ -60,7 +60,7 @@ const unsigned kTagNumberMask = CBS_ASN1_TAG_NUMBER_MASK; ...@@ -60,7 +60,7 @@ const unsigned kTagNumberMask = CBS_ASN1_TAG_NUMBER_MASK;
const unsigned kTagConstructionMask = CBS_ASN1_CONSTRUCTED; const unsigned kTagConstructionMask = CBS_ASN1_CONSTRUCTED;
const unsigned kTagClassMask = CBS_ASN1_CLASS_MASK; const unsigned kTagClassMask = CBS_ASN1_CLASS_MASK;
// Creates the value for the outter tag of an explicitly tagged type. // Creates the value for the outer tag of an explicitly tagged type.
// //
// The ASN.1 keyword for this is: // The ASN.1 keyword for this is:
// [tag_number] EXPLICIT // [tag_number] EXPLICIT
......
...@@ -366,7 +366,7 @@ TEST(IntegrationTestsTest, RunChildFromInsideJobNoEscape) { ...@@ -366,7 +366,7 @@ TEST(IntegrationTestsTest, RunChildFromInsideJobNoEscape) {
} }
// Running without a job object should be ok regardless of the fact that we are // Running without a job object should be ok regardless of the fact that we are
// running inside an outter job. // running inside an outer job.
TEST(IntegrationTestsTest, RunJoblessChildFromInsideJob) { TEST(IntegrationTestsTest, RunJoblessChildFromInsideJob) {
TestRunner runner; TestRunner runner;
runner.SetUnsandboxed(true); runner.SetUnsandboxed(true);
......
...@@ -683,7 +683,7 @@ bool XWindow::IsFullscreen() const { ...@@ -683,7 +683,7 @@ bool XWindow::IsFullscreen() const {
gfx::GetAtom("_NET_WM_STATE_FULLSCREEN")); gfx::GetAtom("_NET_WM_STATE_FULLSCREEN"));
} }
gfx::Rect XWindow::GetOutterBounds() const { gfx::Rect XWindow::GetOuterBounds() const {
gfx::Rect outer_bounds(bounds_in_pixels_); gfx::Rect outer_bounds(bounds_in_pixels_);
outer_bounds.Inset(-native_window_frame_borders_in_pixels_); outer_bounds.Inset(-native_window_frame_borders_in_pixels_);
return outer_bounds; return outer_bounds;
......
...@@ -124,7 +124,7 @@ class COMPONENT_EXPORT(UI_BASE_X) XWindow { ...@@ -124,7 +124,7 @@ class COMPONENT_EXPORT(UI_BASE_X) XWindow {
bool IsMinimized() const; bool IsMinimized() const;
bool IsMaximized() const; bool IsMaximized() const;
bool IsFullscreen() const; bool IsFullscreen() const;
gfx::Rect GetOutterBounds() const; gfx::Rect GetOuterBounds() const;
void SetCursor(::Cursor cursor); void SetCursor(::Cursor cursor);
bool SetTitle(base::string16 title); bool SetTitle(base::string16 title);
......
...@@ -75,7 +75,7 @@ bool X11TopmostWindowFinder::ShouldStopIteratingAtLocalProcessWindow( ...@@ -75,7 +75,7 @@ bool X11TopmostWindowFinder::ShouldStopIteratingAtLocalProcessWindow(
if (!window->IsVisible()) if (!window->IsVisible())
return false; return false;
gfx::Rect window_bounds = window->GetOutterBounds(); gfx::Rect window_bounds = window->GetOuterBounds();
if (!window_bounds.Contains(screen_loc_in_pixels_)) if (!window_bounds.Contains(screen_loc_in_pixels_))
return false; return false;
......
...@@ -513,7 +513,7 @@ void X11Window::OnCompleteSwapAfterResize() { ...@@ -513,7 +513,7 @@ void X11Window::OnCompleteSwapAfterResize() {
} }
gfx::Rect X11Window::GetXRootWindowOuterBounds() const { gfx::Rect X11Window::GetXRootWindowOuterBounds() const {
return XWindow::GetOutterBounds(); return XWindow::GetOuterBounds();
} }
bool X11Window::ContainsPointInXRegion(const gfx::Point& point) const { bool X11Window::ContainsPointInXRegion(const gfx::Point& point) const {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment