Chromium Code Reviews| 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/chromeos/fileapi/cros_mount_point_provider.h" | 5 #include "webkit/chromeos/fileapi/cros_mount_point_provider.h" |
| 6 | 6 |
| 7 #include "base/base_paths_posix.h" | |
|
satorux1
2012/09/13 23:32:32
just curious but why did it become necessary?
gab
2012/09/13 23:40:12
There should already have been an include to "base
satorux1
2012/09/13 23:41:40
Thank you for the explanation! "include-what-you-u
| |
| 7 #include "base/chromeos/chromeos_version.h" | 8 #include "base/chromeos/chromeos_version.h" |
| 8 #include "base/logging.h" | 9 #include "base/logging.h" |
| 9 #include "base/memory/scoped_ptr.h" | 10 #include "base/memory/scoped_ptr.h" |
| 10 #include "base/message_loop.h" | 11 #include "base/message_loop.h" |
| 11 #include "base/path_service.h" | 12 #include "base/path_service.h" |
| 12 #include "base/stringprintf.h" | 13 #include "base/stringprintf.h" |
| 13 #include "base/synchronization/lock.h" | 14 #include "base/synchronization/lock.h" |
| 14 #include "base/utf_string_conversions.h" | 15 #include "base/utf_string_conversions.h" |
| 15 #include "third_party/WebKit/Source/WebKit/chromium/public/WebSecurityOrigin.h" | 16 #include "third_party/WebKit/Source/WebKit/chromium/public/WebSecurityOrigin.h" |
| 16 #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebCString.h " | 17 #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebCString.h " |
| (...skipping 264 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 281 } | 282 } |
| 282 return iter->first.DirName().AppendRelativePath( | 283 return iter->first.DirName().AppendRelativePath( |
| 283 filesystem_path, virtual_path); | 284 filesystem_path, virtual_path); |
| 284 } | 285 } |
| 285 | 286 |
| 286 fileapi::IsolatedContext* CrosMountPointProvider::isolated_context() const { | 287 fileapi::IsolatedContext* CrosMountPointProvider::isolated_context() const { |
| 287 return fileapi::IsolatedContext::GetInstance(); | 288 return fileapi::IsolatedContext::GetInstance(); |
| 288 } | 289 } |
| 289 | 290 |
| 290 } // namespace chromeos | 291 } // namespace chromeos |
| OLD | NEW |