diff options
author | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-02-11 22:01:26 +0000 |
---|---|---|
committer | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-02-11 22:01:26 +0000 |
commit | c08c1aaacb9685030814a0e066cb90f2b1202fac (patch) | |
tree | ccf76f46db61b41891c65e5e6e80c61de46730d1 /ui/views | |
parent | 40e337fb443718359220ed18158a72584cea1812 (diff) | |
download | chromium_src-c08c1aaacb9685030814a0e066cb90f2b1202fac.zip chromium_src-c08c1aaacb9685030814a0e066cb90f2b1202fac.tar.gz chromium_src-c08c1aaacb9685030814a0e066cb90f2b1202fac.tar.bz2 |
views: Update some comments in example_base.h.
R=sky@chromium.org
Review URL: https://chromiumcodereview.appspot.com/9379011
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@121659 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ui/views')
-rw-r--r-- | ui/views/examples/example_base.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/ui/views/examples/example_base.h b/ui/views/examples/example_base.h index 1d44959..f3abd99 100644 --- a/ui/views/examples/example_base.h +++ b/ui/views/examples/example_base.h @@ -23,8 +23,6 @@ class ExampleBase { virtual void CreateExampleView(View* parent) = 0; const std::string& example_title() const { return example_title_; } - - // This view is added as a tab to the example application. View* example_view() { return container_; } protected: @@ -39,10 +37,10 @@ class ExampleBase { } private: - // Name of the example - used for the title of the tab. + // Name of the example - used as title in the combobox list. std::string example_title_; - // The view containing example views. + // The view that contains the views example. View* container_; DISALLOW_COPY_AND_ASSIGN(ExampleBase); |