summaryrefslogtreecommitdiffstats
path: root/ui/views
diff options
context:
space:
mode:
authortfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-02-11 22:01:26 +0000
committertfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-02-11 22:01:26 +0000
commitc08c1aaacb9685030814a0e066cb90f2b1202fac (patch)
treeccf76f46db61b41891c65e5e6e80c61de46730d1 /ui/views
parent40e337fb443718359220ed18158a72584cea1812 (diff)
downloadchromium_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.h6
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);