| OLD | NEW |
| 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "config.h" | 5 #include "config.h" |
| 6 | 6 |
| 7 #include "base/compiler_specific.h" | 7 #include "base/compiler_specific.h" |
| 8 | 8 |
| 9 MSVC_PUSH_WARNING_LEVEL(0); | 9 MSVC_PUSH_WARNING_LEVEL(0); |
| 10 #include "Cursor.h" | 10 #include "Cursor.h" |
| (...skipping 282 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 293 return NULL; | 293 return NULL; |
| 294 } | 294 } |
| 295 | 295 |
| 296 void WebWidgetImpl::onScrollPositionChanged(Widget* widget) { | 296 void WebWidgetImpl::onScrollPositionChanged(Widget* widget) { |
| 297 } | 297 } |
| 298 | 298 |
| 299 bool WebWidgetImpl::isHidden() { | 299 bool WebWidgetImpl::isHidden() { |
| 300 if (!delegate_) | 300 if (!delegate_) |
| 301 return true; | 301 return true; |
| 302 | 302 |
| 303 return delegate_->IsHidden(); | 303 return delegate_->IsHidden(this); |
| 304 } | 304 } |
| 305 #endif | 305 #endif |
| OLD | NEW |