| OLD | NEW |
| 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 Loading... |
| 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 } |
| OLD | NEW |