| Index: chrome/browser/message_box_handler.cc
|
| ===================================================================
|
| --- chrome/browser/message_box_handler.cc (revision 38896)
|
| +++ chrome/browser/message_box_handler.cc (working copy)
|
| @@ -70,10 +70,12 @@
|
|
|
| void RunLocalStoragePrompt(
|
| TabContents* tab_contents,
|
| - const BrowsingDataLocalStorageHelper::LocalStorageInfo& local_storage_info,
|
| + const std::string& host,
|
| + const string16& key,
|
| + const string16& value,
|
| CookiePromptModalDialogDelegate* delegate) {
|
| Singleton<AppModalDialogQueue>()->AddDialog(
|
| - new CookiePromptModalDialog(tab_contents, local_storage_info, delegate));
|
| + new CookiePromptModalDialog(tab_contents, host, key, value, delegate));
|
| }
|
| #endif
|
|
|
|
|