diff options
Diffstat (limited to 'views/controls/button/native_button_gtk.cc')
-rw-r--r-- | views/controls/button/native_button_gtk.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/views/controls/button/native_button_gtk.cc b/views/controls/button/native_button_gtk.cc index cf8b757..bcd7a22 100644 --- a/views/controls/button/native_button_gtk.cc +++ b/views/controls/button/native_button_gtk.cc @@ -1,4 +1,4 @@ -// Copyright (c) 2011 The Chromium Authors. All rights reserved. +// Copyright (c) 2010 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. @@ -18,7 +18,7 @@ namespace views { -NativeButtonGtk::NativeButtonGtk(NativeButtonBase* native_button) +NativeButtonGtk::NativeButtonGtk(NativeButton* native_button) : native_button_(native_button) { // Associates the actual GtkWidget with the native_button so the native_button // is the one considered as having the focus (not the wrapper) when the @@ -285,7 +285,7 @@ int NativeButtonWrapper::GetFixedWidth() { // static NativeButtonWrapper* NativeButtonWrapper::CreateNativeButtonWrapper( - NativeButtonBase* native_button) { + NativeButton* native_button) { return new NativeButtonGtk(native_button); } |