| 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 "AccessibilityObject.h" | 10 #include "AccessibilityObject.h" |
| (...skipping 621 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 632 break; | 632 break; |
| 633 default: | 633 default: |
| 634 NOTREACHED(); | 634 NOTREACHED(); |
| 635 } | 635 } |
| 636 } | 636 } |
| 637 | 637 |
| 638 info->itemHeight = popup_container->menuItemHeight(); | 638 info->itemHeight = popup_container->menuItemHeight(); |
| 639 info->selectedIndex = popup_container->selectedIndex(); | 639 info->selectedIndex = popup_container->selectedIndex(); |
| 640 info->items.swap(output_items); | 640 info->items.swap(output_items); |
| 641 } | 641 } |
| 642 |
| 643 void ChromeClientImpl::chooseGeolocationProvider( |
| 644 ChooseGeolocationProviderCallback *geolocation_provider_callback, |
| 645 const WebCore::KURL &url) { |
| 646 WebViewDelegate* delegate = webview_->delegate(); |
| 647 delegate->chooseGeolocationProvider(geolocation_provider_callback, url); |
| 648 } |
| OLD | NEW |