diff options
author | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-09-16 16:47:16 +0000 |
---|---|---|
committer | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-09-16 16:47:16 +0000 |
commit | 2b1880cb8f1042235f4242b6ec571e606de8e4bc (patch) | |
tree | 017e09f4feb8fb0fbb3676b2b0c9edf56bbde85d /views | |
parent | 3de33afaf5262931509acd2772e23f54f7abf118 (diff) | |
download | chromium_src-2b1880cb8f1042235f4242b6ec571e606de8e4bc.zip chromium_src-2b1880cb8f1042235f4242b6ec571e606de8e4bc.tar.gz chromium_src-2b1880cb8f1042235f4242b6ec571e606de8e4bc.tar.bz2 |
views: Fix unnamed namespace comments.
R=sky@chromium.org
Review URL: http://codereview.chromium.org/7921001
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@101498 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'views')
-rw-r--r-- | views/controls/progress_bar.cc | 2 | ||||
-rw-r--r-- | views/controls/scrollbar/bitmap_scroll_bar.cc | 2 | ||||
-rw-r--r-- | views/ime/character_composer.cc | 2 | ||||
-rw-r--r-- | views/widget/tooltip_manager.cc | 4 |
4 files changed, 5 insertions, 5 deletions
diff --git a/views/controls/progress_bar.cc b/views/controls/progress_bar.cc index f15f5dd..7cdebdb 100644 --- a/views/controls/progress_bar.cc +++ b/views/controls/progress_bar.cc @@ -127,7 +127,7 @@ void StrokeRoundRect(gfx::Canvas* canvas, canvas->AsCanvasSkia()->drawPath(path, paint); } -} // anonymous namespace +} // namespace namespace views { diff --git a/views/controls/scrollbar/bitmap_scroll_bar.cc b/views/controls/scrollbar/bitmap_scroll_bar.cc index 6b7fbc0..6350799 100644 --- a/views/controls/scrollbar/bitmap_scroll_bar.cc +++ b/views/controls/scrollbar/bitmap_scroll_bar.cc @@ -162,7 +162,7 @@ class BitmapScrollBarThumb : public BaseScrollBarThumb { DISALLOW_COPY_AND_ASSIGN(BitmapScrollBarThumb); }; -} // anonymous namespace +} // namespace /////////////////////////////////////////////////////////////////////////////// // BitmapScrollBar, public: diff --git a/views/ime/character_composer.cc b/views/ime/character_composer.cc index fb162f1..249c05a 100644 --- a/views/ime/character_composer.cc +++ b/views/ime/character_composer.cc @@ -260,7 +260,7 @@ int ComposeCheckerWithCompactTable::CompareSequenceSkipFront::operator()( // Main table. // This file is included here intentionally, instead of the top of the file, -// because including this file outside the anonymous namespace will define a +// because including this file outside the unnamed namespace will define a // global constant and contaminate the global namespace. #include "third_party/gtk+/gtk/gtkimcontextsimpleseqs.h" diff --git a/views/widget/tooltip_manager.cc b/views/widget/tooltip_manager.cc index db15c9e..1d8b285 100644 --- a/views/widget/tooltip_manager.cc +++ b/views/widget/tooltip_manager.cc @@ -6,8 +6,8 @@ #include <vector> -#include "base/utf_string_conversions.h" #include "base/string_split.h" +#include "base/utf_string_conversions.h" #include "ui/base/text/text_elider.h" namespace { @@ -18,7 +18,7 @@ const size_t kMaxTooltipLength = 1024; // Maximum number of lines we allow in the tooltip. const size_t kMaxLines = 6; -} // anonymous namespace +} // namespace namespace views { |