Chromium Code Reviews| Index: chrome/browser/renderer_host/database_dispatcher_host.cc |
| =================================================================== |
| --- chrome/browser/renderer_host/database_dispatcher_host.cc (revision 68246) |
| +++ chrome/browser/renderer_host/database_dispatcher_host.cc (working copy) |
| @@ -4,13 +4,10 @@ |
| #include "chrome/browser/renderer_host/database_dispatcher_host.h" |
| -#if defined(OS_POSIX) |
| -#include "base/file_descriptor_posix.h" |
| -#endif |
| +#include <string> |
| #include "base/string_util.h" |
| #include "base/thread.h" |
| -#include "chrome/browser/browser_process.h" |
| #include "chrome/browser/browser_thread.h" |
| #include "chrome/browser/content_settings/host_content_settings_map.h" |
| #include "chrome/browser/net/chrome_url_request_context.h" |
| @@ -22,6 +19,10 @@ |
| #include "webkit/database/database_util.h" |
| #include "webkit/database/vfs_backend.h" |
| +#if defined(OS_POSIX) |
|
James Hawkins
2010/12/05 17:58:47
#ifdef includes should be inline with the rest of
|
| +#include "base/file_descriptor_posix.h" |
| +#endif |
| + |
| using WebKit::WebSecurityOrigin; |
| using webkit_database::DatabaseTracker; |
| using webkit_database::DatabaseUtil; |