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

Unified Diff: chrome/browser/renderer_host/database_dispatcher_host.cc

Issue 5512009: Remove unneeded browser_process.h includes. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: fix linux build Created 10 years 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 side-by-side diff with in-line comments
Download patch
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;

Powered by Google App Engine
This is Rietveld 408576698