diff options
author | pkasting@chromium.org <pkasting@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-09-14 19:48:05 +0000 |
---|---|---|
committer | pkasting@chromium.org <pkasting@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-09-14 19:48:05 +0000 |
commit | 054e3fd90a78cdf9674af74b394105022a9a4098 (patch) | |
tree | f926769ede5db4995ddb17ac6ae5f4cff7d23aa3 /views/view.h | |
parent | 7dff345a51e4b020441f82aa2bc6d55046c946cc (diff) | |
download | chromium_src-054e3fd90a78cdf9674af74b394105022a9a4098.zip chromium_src-054e3fd90a78cdf9674af74b394105022a9a4098.tar.gz chromium_src-054e3fd90a78cdf9674af74b394105022a9a4098.tar.bz2 |
Clean up a few tiny things I noticed.
BUG=none
TEST=none
Review URL: http://codereview.chromium.org/196110
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@26144 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'views/view.h')
-rw-r--r-- | views/view.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/views/view.h b/views/view.h index 764cbd3..05b32ae 100644 --- a/views/view.h +++ b/views/view.h @@ -1099,7 +1099,7 @@ class View : public AcceleratorTarget { // Sets the parent View. This is called automatically by AddChild and is // thus private. - void SetParent(View *parent); + void SetParent(View* parent); // Call ViewHierarchyChanged for all child views on all parents void PropagateRemoveNotifications(View* parent); @@ -1164,7 +1164,7 @@ class View : public AcceleratorTarget { gfx::Rect bounds_; // This view's parent - View *parent_; + View* parent_; // This view's children. typedef std::vector<View*> ViewList; |