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

Unified Diff: chrome/browser/message_box_handler.cc

Issue 597061: Make the setItem CONTENT_SETTING_ASK dialog more useful by showing the actual... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 10 years, 10 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 side-by-side diff with in-line comments
Download patch
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

Powered by Google App Engine
This is Rietveld 408576698