diff options
author | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-11-09 15:43:59 +0000 |
---|---|---|
committer | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-11-09 15:43:59 +0000 |
commit | 0ea39b31da19464ae79e70fb6c6dfbdcccc633e7 (patch) | |
tree | 41ce5cbbc1608a94f07e6f75ce8fa2ef1d505b19 | |
parent | 74046e215d0bc6cffd6caf316f3aa817ef356947 (diff) | |
download | chromium_src-0ea39b31da19464ae79e70fb6c6dfbdcccc633e7.zip chromium_src-0ea39b31da19464ae79e70fb6c6dfbdcccc633e7.tar.gz chromium_src-0ea39b31da19464ae79e70fb6c6dfbdcccc633e7.tar.bz2 |
Fix typos of container (continer).
R=sky@chromium.org
Review URL: http://codereview.chromium.org/8505017
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@109248 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r-- | chrome/browser/ui/gtk/browser_titlebar.h | 6 | ||||
-rw-r--r-- | views/examples/menu_example.cc | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/chrome/browser/ui/gtk/browser_titlebar.h b/chrome/browser/ui/gtk/browser_titlebar.h index eca9a27..c7c337d 100644 --- a/chrome/browser/ui/gtk/browser_titlebar.h +++ b/chrome/browser/ui/gtk/browser_titlebar.h @@ -96,9 +96,9 @@ class BrowserTitlebar : public content::NotificationObserver, explicit ContextMenuModel(ui::SimpleMenuModel::Delegate* delegate); }; - // Build the titlebar, the space above the tab - // strip, and (maybe) the min, max, close buttons. |container| is the gtk - // continer that we put the widget into. + // Build the titlebar, the space above the tab strip, and (maybe) the min, + // max, close buttons. |container_| is the gtk container that we put the + // widget into. void Init(); // Lazily builds and returns |titlebar_{left,right}_buttons_vbox_| and their diff --git a/views/examples/menu_example.cc b/views/examples/menu_example.cc index ea501eb..a68b08a 100644 --- a/views/examples/menu_example.cc +++ b/views/examples/menu_example.cc @@ -205,7 +205,7 @@ MenuExample::~MenuExample() { void MenuExample::CreateExampleView(views::View* container) { // views::Menu2 is not a sub class of View, hence we cannot directly - // add to the continer. Instead, we add a button to open a menu. + // add to the container. Instead, we add a button to open a menu. const bool show_menu_marker = true; ExampleMenuButton* menu_button = new ExampleMenuButton( ASCIIToUTF16("Open a menu"), show_menu_marker); |