Home
last modified time | relevance | path

Searched refs:json_retval (Results 1 – 25 of 77) sorted by relevance

1234

/external/chromium/chrome/browser/ui/webui/
Dconstrained_html_ui.cc51 std::string json_retval; in OnDialogClose() local
52 if (!args->GetString(0, &json_retval)) in OnDialogClose()
54 delegate->GetHtmlDialogUIDelegate()->OnDialogClosed(json_retval); in OnDialogClose()
Dhtml_dialog_ui.cc68 std::string json_retval; in OnDialogClosed() local
69 if (!args->GetString(0, &json_retval)) in OnDialogClosed()
72 (*delegate)->OnDialogClosed(json_retval); in OnDialogClosed()
Dconstrained_html_ui_browsertest.cc47 virtual void OnDialogClosed(const std::string& json_retval) { } in OnDialogClosed() argument
/external/chromium_org/chrome/browser/ui/webui/
Dconstrained_web_dialog_ui.cc83 std::string json_retval; in OnDialogCloseMessage() local
84 if (!args->empty() && !args->GetString(0, &json_retval)) in OnDialogCloseMessage()
86 delegate->GetWebDialogDelegate()->OnDialogClosed(json_retval); in OnDialogCloseMessage()
/external/chromium_org/ui/web_dialogs/
Dweb_dialog_ui.cc108 std::string json_retval; in OnDialogClosed() local
109 if (args && !args->empty() && !args->GetString(0, &json_retval)) in OnDialogClosed()
112 delegate->OnDialogCloseFromWebUI(json_retval); in OnDialogClosed()
Dweb_dialog_delegate.cc22 const std::string& json_retval) { in OnDialogCloseFromWebUI() argument
23 OnDialogClosed(json_retval); in OnDialogCloseFromWebUI()
Dweb_dialog_delegate.h86 virtual void OnDialogClosed(const std::string& json_retval) = 0;
90 virtual void OnDialogCloseFromWebUI(const std::string& json_retval);
/external/chromium_org/ui/views/controls/webview/
Dweb_dialog_view.cc229 void WebDialogView::OnDialogClosed(const std::string& json_retval) { in OnDialogClosed() argument
240 delegate_->OnDialogClosed(json_retval); in OnDialogClosed()
245 void WebDialogView::OnDialogCloseFromWebUI(const std::string& json_retval) { in OnDialogCloseFromWebUI() argument
247 dialog_close_retval_ = json_retval; in OnDialogCloseFromWebUI()
Dweb_dialog_view.h88 virtual void OnDialogClosed(const std::string& json_retval) OVERRIDE;
90 const std::string& json_retval) OVERRIDE;
/external/chromium_org/chrome/browser/chromeos/login/
Dproxy_settings_dialog.cc88 void ProxySettingsDialog::OnDialogClosed(const std::string& json_retval) { in OnDialogClosed() argument
89 LoginWebDialog::OnDialogClosed(json_retval); in OnDialogClosed()
Dproxy_settings_dialog.h28 virtual void OnDialogClosed(const std::string& json_retval) OVERRIDE;
/external/chromium/chrome/browser/ui/login/
Dlogin_prompt_ui.cc116 virtual void OnDialogClosed(const std::string& json_retval);
196 void LoginHandlerHtmlDelegate::OnDialogClosed(const std::string& json_retval) { in OnDialogClosed() argument
201 scoped_ptr<Value> parsed_value(base::JSONReader::Read(json_retval, false)); in OnDialogClosed()
/external/chromium/chrome/browser/ui/cocoa/
Dhtml_dialog_window_controller.mm45 virtual void OnDialogClosed(const std::string& json_retval);
61 bool DelegateOnDialogClosed(const std::string& json_retval);
103 const std::string& json_retval) {
107 real_delegate->OnDialogClosed(json_retval);
159 const std::string& json_retval) {
162 if (DelegateOnDialogClosed(json_retval)) {
/external/chromium/chrome/browser/ui/gtk/
Dhtml_dialog_gtk.cc86 void HtmlDialogGtk::OnDialogClosed(const std::string& json_retval) { in OnDialogClosed() argument
93 dialog_delegate->OnDialogClosed(json_retval); in OnDialogClosed()
/external/chromium_org/chrome/browser/ui/webui/chromeos/
Dmobile_setup_dialog.cc56 virtual void OnDialogClosed(const std::string& json_retval) OVERRIDE;
139 void MobileSetupDialogDelegate::OnDialogClosed(const std::string& json_retval) { in OnDialogClosed() argument
/external/chromium_org/chrome/browser/ui/cocoa/
Dweb_dialog_window_controller.mm56 virtual void OnDialogClosed(const std::string& json_retval) OVERRIDE;
85 bool DelegateOnDialogClosed(const std::string& json_retval);
130 const std::string& json_retval) {
134 real_delegate->OnDialogClosed(json_retval);
193 const std::string& json_retval) {
196 if (DelegateOnDialogClosed(json_retval)) {
/external/chromium/chrome/browser/ui/views/
Dhtml_dialog_view.cc144 void HtmlDialogView::OnDialogClosed(const std::string& json_retval) { in OnDialogClosed() argument
149 dialog_delegate->OnDialogClosed(json_retval); in OnDialogClosed()
Dkeyboard_overlay_delegate.h36 virtual void OnDialogClosed(const std::string& json_retval);
/external/chromium_org/chrome/browser/ui/views/
Dweb_dialog_view_browsertest.cc69 virtual void OnDialogClosed(const std::string& json_retval) OVERRIDE { in OnDialogClosed() argument
71 views::WebDialogView::OnDialogClosed(json_retval); in OnDialogClosed()
/external/chromium/chrome/browser/chromeos/
Dchoose_mobile_network_dialog.h30 virtual void OnDialogClosed(const std::string& json_retval);
Dsim_dialog_delegate.h40 virtual void OnDialogClosed(const std::string& json_retval);
/external/chromium_org/ui/web_dialogs/test/
Dtest_web_dialog_delegate.cc47 void TestWebDialogDelegate::OnDialogClosed(const std::string& json_retval) { in OnDialogClosed() argument
/external/chromium_org/chrome/browser/ui/sync/
Dinline_login_dialog.cc46 void InlineLoginDialog::OnDialogClosed(const std::string& json_retval) { in OnDialogClosed() argument
/external/chromium_org/chrome/browser/chromeos/
Dchoose_mobile_network_dialog.h32 virtual void OnDialogClosed(const std::string& json_retval) OVERRIDE;
Dchoose_mobile_network_dialog.cc60 void ChooseMobileNetworkDialog::OnDialogClosed(const std::string& json_retval) { in OnDialogClosed() argument

1234