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

Unified Diff: chrome/browser/renderer_host/chrome_render_message_filter.cc

Issue 263513004: Forward MIME types to BrowserPlugin when a viewer is specified. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Send URLRequest instead of extra params Created 6 years, 6 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/renderer_host/chrome_render_message_filter.cc
diff --git a/chrome/browser/renderer_host/chrome_render_message_filter.cc b/chrome/browser/renderer_host/chrome_render_message_filter.cc
index 9fa68c8e5d654d0fb1dfac482f2d83d13072fb02..3fd2eaee6cbb592fabc936d775d8c1cae2138c77 100644
--- a/chrome/browser/renderer_host/chrome_render_message_filter.cc
+++ b/chrome/browser/renderer_host/chrome_render_message_filter.cc
@@ -446,7 +446,7 @@ void ChromeRenderMessageFilter::OnAllowDOMStorage(int render_frame_id,
const GURL& top_origin_url,
bool local,
bool* allowed) {
- *allowed =
+ *allowed = true;
jam 2014/06/06 15:00:40 is this a local testing change?
Zachary Kuznia 2014/06/07 01:45:36 Yes. Forgot to specify the right branch when uplo
cookie_settings_->IsSettingCookieAllowed(origin_url, top_origin_url);
// Record access to DOM storage for potential display in UI.
BrowserThread::PostTask(

Powered by Google App Engine
This is Rietveld 408576698