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

Side by Side Diff: chrome/renderer/content_settings_observer.cc

Issue 120593003: Move kFileScheme constant into content namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 11 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chrome/common/net/url_fixer_upper.cc ('k') | chrome/renderer/extensions/dispatcher.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "chrome/renderer/content_settings_observer.h" 5 #include "chrome/renderer/content_settings_observer.h"
6 6
7 #include "base/command_line.h" 7 #include "base/command_line.h"
8 #include "base/metrics/histogram.h" 8 #include "base/metrics/histogram.h"
9 #include "chrome/common/chrome_switches.h" 9 #include "chrome/common/chrome_switches.h"
10 #include "chrome/common/render_messages.h" 10 #include "chrome/common/render_messages.h"
(...skipping 645 matching lines...) Expand 10 before | Expand all | Expand 10 after
656 if (EqualsASCII(origin.protocol(), extensions::kExtensionScheme)) 656 if (EqualsASCII(origin.protocol(), extensions::kExtensionScheme))
657 return true; 657 return true;
658 658
659 // TODO(creis, fsamuel): Remove this once the concept of swapped out 659 // TODO(creis, fsamuel): Remove this once the concept of swapped out
660 // RenderFrames goes away. 660 // RenderFrames goes away.
661 if (document_url == GURL(content::kSwappedOutURL)) 661 if (document_url == GURL(content::kSwappedOutURL))
662 return true; 662 return true;
663 663
664 // If the scheme is file:, an empty file name indicates a directory listing, 664 // If the scheme is file:, an empty file name indicates a directory listing,
665 // which requires JavaScript to function properly. 665 // which requires JavaScript to function properly.
666 if (EqualsASCII(origin.protocol(), chrome::kFileScheme)) { 666 if (EqualsASCII(origin.protocol(), content::kFileScheme)) {
667 return document_url.SchemeIs(chrome::kFileScheme) && 667 return document_url.SchemeIs(content::kFileScheme) &&
668 document_url.ExtractFileName().empty(); 668 document_url.ExtractFileName().empty();
669 } 669 }
670 670
671 return false; 671 return false;
672 } 672 }
OLDNEW
« no previous file with comments | « chrome/common/net/url_fixer_upper.cc ('k') | chrome/renderer/extensions/dispatcher.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698