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

Side by Side Diff: webkit/fileapi/file_system_url.cc

Issue 16072003: Fix module dependency in file_system_url* (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | webkit/fileapi/file_system_url_unittest.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 "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/browser/fileapi/external_mount_points.h"
13 #include "webkit/browser/fileapi/isolated_context.h"
14 #include "webkit/fileapi/file_system_types.h" 12 #include "webkit/fileapi/file_system_types.h"
15 #include "webkit/fileapi/file_system_util.h" 13 #include "webkit/fileapi/file_system_util.h"
16 14
17 namespace fileapi { 15 namespace fileapi {
18 16
19 namespace { 17 namespace {
20 18
21 } // namespace 19 } // namespace
22 20
23 FileSystemURL::FileSystemURL() 21 FileSystemURL::FileSystemURL()
(...skipping 153 matching lines...) Expand 10 before | Expand all | Expand 10 after
177 if (lhs.origin_ != rhs.origin_) 175 if (lhs.origin_ != rhs.origin_)
178 return lhs.origin_ < rhs.origin_; 176 return lhs.origin_ < rhs.origin_;
179 if (lhs.type_ != rhs.type_) 177 if (lhs.type_ != rhs.type_)
180 return lhs.type_ < rhs.type_; 178 return lhs.type_ < rhs.type_;
181 if (lhs.filesystem_id_ != rhs.filesystem_id_) 179 if (lhs.filesystem_id_ != rhs.filesystem_id_)
182 return lhs.filesystem_id_ < rhs.filesystem_id_; 180 return lhs.filesystem_id_ < rhs.filesystem_id_;
183 return lhs.path_ < rhs.path_; 181 return lhs.path_ < rhs.path_;
184 } 182 }
185 183
186 } // namespace fileapi 184 } // namespace fileapi
OLDNEW
« no previous file with comments | « no previous file | webkit/fileapi/file_system_url_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698