diff options
author | wyck@chromium.org <wyck@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-03-09 02:26:54 +0000 |
---|---|---|
committer | wyck@chromium.org <wyck@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-03-09 02:26:54 +0000 |
commit | c069fb03fc0c9a56f1f62c19b8bd0aace455eb2b (patch) | |
tree | 45d50494277626288009d28bbdc5b41dee266e1b /views/view.cc | |
parent | 89c89b763413e868fcd98e823c3df5d28bca87ac (diff) | |
download | chromium_src-c069fb03fc0c9a56f1f62c19b8bd0aace455eb2b.zip chromium_src-c069fb03fc0c9a56f1f62c19b8bd0aace455eb2b.tar.gz chromium_src-c069fb03fc0c9a56f1f62c19b8bd0aace455eb2b.tar.bz2 |
Fixed spelling and typos.
Only comments were changed. No code was harmed in the making of this CL.
BUG=None
TEST=None
Review URL: http://codereview.chromium.org/6625015
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@77410 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'views/view.cc')
-rw-r--r-- | views/view.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/views/view.cc b/views/view.cc index 895c678..ac5911d 100644 --- a/views/view.cc +++ b/views/view.cc @@ -689,7 +689,7 @@ void View::Paint(gfx::Canvas* canvas) { if (!IsVisible()) return; - // We're going to modify the canvas, save it's state first. + // We're going to modify the canvas, save its state first. canvas->Save(); // Paint this View and its children, setting the clip rect to the bounds @@ -1461,7 +1461,7 @@ void View::ConvertPointToView(const View* src, if (!src->ConvertPointForAncestor(dst, point)) { // |src| is not an ancestor of |dst|, and |dst| is not an ancestor of // |src| either. At this stage, |point| is in the widget's coordinate - // system. So convert from the widget's to |dst|'s coordiante system now. + // system. So convert from the widget's to |dst|'s coordinate system now. ConvertPointFromWidget(dst, point); } } @@ -1478,7 +1478,7 @@ bool View::ProcessMousePressed(const MouseEvent& e, DragInfo* drag_info) { context_menu_controller_ : 0; const bool result = OnMousePressed(e); - // WARNING: we may have been deleted, don't use any View variables; + // WARNING: we may have been deleted, don't use any View variables. if (!enabled) return result; |