| Index: chrome/renderer/render_view.h
|
| ===================================================================
|
| --- chrome/renderer/render_view.h (revision 23543)
|
| +++ chrome/renderer/render_view.h (working copy)
|
| @@ -44,6 +44,7 @@
|
| #endif
|
|
|
| class AudioMessageFilter;
|
| +class ChooseGeolocationProviderCallback;
|
| class DictionaryValue;
|
| class DevToolsAgent;
|
| class DevToolsClient;
|
| @@ -173,6 +174,9 @@
|
| const string16& title,
|
| const FilePath& initial_filename,
|
| WebFileChooserCallback* file_chooser);
|
| + virtual void chooseGeolocationProvider(
|
| + ChooseGeolocationProviderCallback *geolocation_provider_callback,
|
| + const WebCore::KURL &url);
|
| virtual void AddMessageToConsole(WebView* webview,
|
| const std::wstring& message,
|
| unsigned int line_no,
|
| @@ -549,6 +553,7 @@
|
| void OnDragSourceSystemDragEnded();
|
| void OnInstallMissingPlugin();
|
| void OnFileChooserResponse(const std::vector<FilePath>& file_names);
|
| + void OnChooseGeolocationProviderResponse(int provider_id);
|
| void OnEnableViewSourceMode();
|
| void OnEnableIntrinsicWidthChangedMode();
|
| void OnSetRendererPrefs(const RendererPreferences& renderer_prefs);
|
| @@ -774,6 +779,8 @@
|
|
|
| scoped_ptr<WebFileChooserCallback> file_chooser_;
|
|
|
| + scoped_ptr<ChooseGeolocationProviderCallback> geolocation_provider_callback_;
|
| +
|
| int history_back_list_count_;
|
| int history_forward_list_count_;
|
|
|
|
|