| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2009 Google Inc. All rights reserved. | 2 * Copyright (C) 2009 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 are | 5 * modification, are permitted provided that the following conditions are |
| 6 * met: | 6 * met: |
| 7 * | 7 * |
| 8 * * Redistributions of source code must retain the above copyright | 8 * * 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 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
| (...skipping 186 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 197 } | 197 } |
| 198 | 198 |
| 199 if (m_rootLayer) | 199 if (m_rootLayer) |
| 200 m_rootLayer->layer()->setBounds(newSize); | 200 m_rootLayer->layer()->setBounds(newSize); |
| 201 } | 201 } |
| 202 | 202 |
| 203 void WebPopupMenuImpl::willEndLiveResize() | 203 void WebPopupMenuImpl::willEndLiveResize() |
| 204 { | 204 { |
| 205 } | 205 } |
| 206 | 206 |
| 207 void WebPopupMenuImpl::animate(double) | 207 void WebPopupMenuImpl::animate(WebFrameTime) |
| 208 { | 208 { |
| 209 } | 209 } |
| 210 | 210 |
| 211 void WebPopupMenuImpl::layout() | 211 void WebPopupMenuImpl::layout() |
| 212 { | 212 { |
| 213 } | 213 } |
| 214 | 214 |
| 215 void WebPopupMenuImpl::paintContents(WebCanvas* canvas, const WebRect& rect, boo
l, WebFloatRect&, | 215 void WebPopupMenuImpl::paintContents(WebCanvas* canvas, const WebRect& rect, boo
l, WebFloatRect&, |
| 216 WebContentLayerClient::GraphicsContextStatus contextStatus) | 216 WebContentLayerClient::GraphicsContextStatus contextStatus) |
| 217 { | 217 { |
| (...skipping 200 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 418 ASSERT(widget == m_widget); | 418 ASSERT(widget == m_widget); |
| 419 if (m_widget) { | 419 if (m_widget) { |
| 420 m_widget->setClient(0); | 420 m_widget->setClient(0); |
| 421 m_widget = 0; | 421 m_widget = 0; |
| 422 } | 422 } |
| 423 if (m_client) | 423 if (m_client) |
| 424 m_client->closeWidgetSoon(); | 424 m_client->closeWidgetSoon(); |
| 425 } | 425 } |
| 426 | 426 |
| 427 } // namespace blink | 427 } // namespace blink |
| OLD | NEW |