diff options
author | sky@google.com <sky@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-10-24 01:55:03 +0000 |
---|---|---|
committer | sky@google.com <sky@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-10-24 01:55:03 +0000 |
commit | 066e70a48bbaa480f7718db210d98c00d1c1310c (patch) | |
tree | 614419c22a71e93d97b864ec9dc5028e850644b2 /chrome/views/view.cc | |
parent | 9eb381798e60beac696ba13855b85691e9d22fb7 (diff) | |
download | chromium_src-066e70a48bbaa480f7718db210d98c00d1c1310c.zip chromium_src-066e70a48bbaa480f7718db210d98c00d1c1310c.tar.gz chromium_src-066e70a48bbaa480f7718db210d98c00d1c1310c.tar.bz2 |
Adds a horizontal split view.
BUG=674
TEST=none
Review URL: http://codereview.chromium.org/7930
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@3897 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/views/view.cc')
-rw-r--r-- | chrome/views/view.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/views/view.cc b/chrome/views/view.cc index 285aed7..7dff258 100644 --- a/chrome/views/view.cc +++ b/chrome/views/view.cc @@ -543,7 +543,7 @@ void View::DoDrag(const MouseEvent& e, int press_x, int press_y) { WriteDragData(press_x, press_y, data.get()); // Message the RootView to do the drag and drop. That way if we're removed - // the RootView can detect it and avoid callins us back. + // the RootView can detect it and avoid calling us back. RootView* root_view = GetRootView(); root_view->StartDragForViewFromMouseEvent( this, data, GetDragOperations(press_x, press_y)); |