| 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 "webkit/fileapi/file_system_url.h" | 5 #include "webkit/fileapi/file_system_url.h" |
| 6 | 6 |
| 7 #include <sstream> | 7 #include <sstream> |
| 8 | 8 |
| 9 #include "base/logging.h" | 9 #include "base/logging.h" |
| 10 #include "base/string_util.h" | 10 #include "base/string_util.h" |
| 11 #include "net/base/escape.h" | 11 #include "net/base/escape.h" |
| 12 #include "webkit/fileapi/external_mount_points.h" | 12 #include "webkit/browser/fileapi/external_mount_points.h" |
| 13 #include "webkit/browser/fileapi/isolated_context.h" |
| 13 #include "webkit/fileapi/file_system_types.h" | 14 #include "webkit/fileapi/file_system_types.h" |
| 14 #include "webkit/fileapi/file_system_util.h" | 15 #include "webkit/fileapi/file_system_util.h" |
| 15 #include "webkit/fileapi/isolated_context.h" | |
| 16 | 16 |
| 17 namespace fileapi { | 17 namespace fileapi { |
| 18 | 18 |
| 19 namespace { | 19 namespace { |
| 20 | 20 |
| 21 } // namespace | 21 } // namespace |
| 22 | 22 |
| 23 FileSystemURL::FileSystemURL() | 23 FileSystemURL::FileSystemURL() |
| 24 : is_valid_(false), | 24 : is_valid_(false), |
| 25 mount_type_(kFileSystemTypeUnknown), | 25 mount_type_(kFileSystemTypeUnknown), |
| (...skipping 151 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 177 if (lhs.origin_ != rhs.origin_) | 177 if (lhs.origin_ != rhs.origin_) |
| 178 return lhs.origin_ < rhs.origin_; | 178 return lhs.origin_ < rhs.origin_; |
| 179 if (lhs.type_ != rhs.type_) | 179 if (lhs.type_ != rhs.type_) |
| 180 return lhs.type_ < rhs.type_; | 180 return lhs.type_ < rhs.type_; |
| 181 if (lhs.filesystem_id_ != rhs.filesystem_id_) | 181 if (lhs.filesystem_id_ != rhs.filesystem_id_) |
| 182 return lhs.filesystem_id_ < rhs.filesystem_id_; | 182 return lhs.filesystem_id_ < rhs.filesystem_id_; |
| 183 return lhs.path_ < rhs.path_; | 183 return lhs.path_ < rhs.path_; |
| 184 } | 184 } |
| 185 | 185 |
| 186 } // namespace fileapi | 186 } // namespace fileapi |
| OLD | NEW |