diff options
author | maruel@chromium.org <maruel@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-09-05 12:23:12 +0000 |
---|---|---|
committer | maruel@chromium.org <maruel@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-09-05 12:23:12 +0000 |
commit | c7b706f95ddc6852ebc0e94943f2916675de0973 (patch) | |
tree | d250dad097c0edea6bab57bf7dc4ce72ca6e6f25 /webkit | |
parent | c133e960c472483e72e7b4e9b2f17b162128981f (diff) | |
download | chromium_src-c7b706f95ddc6852ebc0e94943f2916675de0973.zip chromium_src-c7b706f95ddc6852ebc0e94943f2916675de0973.tar.gz chromium_src-c7b706f95ddc6852ebc0e94943f2916675de0973.tar.bz2 |
Revert r154941 "Add less< for FileSystemURL".
This broke compile on all platforms (!)
TBR=kinuko@chromium.org
BUG=
Review URL: https://chromiumcodereview.appspot.com/10911096
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@154942 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit')
-rw-r--r-- | webkit/fileapi/file_system_url.h | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/webkit/fileapi/file_system_url.h b/webkit/fileapi/file_system_url.h index f58fa22..d9a9ecb 100644 --- a/webkit/fileapi/file_system_url.h +++ b/webkit/fileapi/file_system_url.h @@ -91,16 +91,6 @@ class FILEAPI_EXPORT FileSystemURL { bool operator==(const FileSystemURL& that) const; - bool operator<(const FileSystemURL& that) const { - DCHECK(is_valid_ && that.is_valid_); - if (origin_ < that.origin_) return true; - if (type_ < that.type_) return true; - // Compares the virtual path, i.e. the path() part of the original URL - // so that this reflects the virtual path relationship (rather than - // that of cracked paths). - return virtual_path_ < that.virtual_path_; - } - private: void MayCrackIsolatedPath(); |