| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2012 Google Inc. All rights reserved. | 2 * Copyright (C) 2012 Google Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions | 5 * modification, are permitted provided that the following conditions |
| 6 * are met: | 6 * are met: |
| 7 * | 7 * |
| 8 * 1. Redistributions of source code must retain the above copyright | 8 * 1. Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * 2. Redistributions in binary form must reproduce the above copyright | 10 * 2. Redistributions in binary form must reproduce the above copyright |
| (...skipping 219 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 230 } | 230 } |
| 231 | 231 |
| 232 void WebScrollbarThemeClientImpl::setElasticOverscroll(float elasticOverscroll) | 232 void WebScrollbarThemeClientImpl::setElasticOverscroll(float elasticOverscroll) |
| 233 { | 233 { |
| 234 return m_scrollbar->setElasticOverscroll(elasticOverscroll); | 234 return m_scrollbar->setElasticOverscroll(elasticOverscroll); |
| 235 } | 235 } |
| 236 | 236 |
| 237 DisplayItemClient WebScrollbarThemeClientImpl::displayItemClient() const | 237 DisplayItemClient WebScrollbarThemeClientImpl::displayItemClient() const |
| 238 { | 238 { |
| 239 ASSERT_NOT_REACHED(); | 239 ASSERT_NOT_REACHED(); |
| 240 return toDisplayItemClient(this); | 240 return DisplayItemClient(this); |
| 241 } | 241 } |
| 242 | 242 |
| 243 String WebScrollbarThemeClientImpl::debugName() const | 243 String WebScrollbarThemeClientImpl::debugName() const |
| 244 { | 244 { |
| 245 return "WebScrollbarThemeClientImpl"; | 245 return "WebScrollbarThemeClientImpl"; |
| 246 } | 246 } |
| 247 | 247 |
| 248 } // namespace blink | 248 } // namespace blink |
| OLD | NEW |