Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(166)

Side by Side Diff: webkit/glue/chrome_client_impl.cc

Issue 160084: Chaos geolocation demo, non-WebKit part. Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: '' Created 11 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « webkit/glue/chrome_client_impl.h ('k') | webkit/glue/webview_delegate.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 }
OLDNEW
« no previous file with comments | « webkit/glue/chrome_client_impl.h ('k') | webkit/glue/webview_delegate.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698