diff options
author | thestig@chromium.org <thestig@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-09-08 06:30:33 +0000 |
---|---|---|
committer | thestig@chromium.org <thestig@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-09-08 06:30:33 +0000 |
commit | c5212894e576e713ffb90d43bc2e5de55478446e (patch) | |
tree | d94e398b1d6072967dd555fc4a09873a46e08355 /chrome/browser/in_process_webkit | |
parent | 3bbddbde99414282ab8984f79e39daaaf243924a (diff) | |
download | chromium_src-c5212894e576e713ffb90d43bc2e5de55478446e.zip chromium_src-c5212894e576e713ffb90d43bc2e5de55478446e.tar.gz chromium_src-c5212894e576e713ffb90d43bc2e5de55478446e.tar.bz2 |
FBTF: Remove unneeded headers from base/ (part 8)
BUG=none
TEST=none
Review URL: http://codereview.chromium.org/3232003
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@58794 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/in_process_webkit')
4 files changed, 4 insertions, 6 deletions
diff --git a/chrome/browser/in_process_webkit/indexed_db_callbacks.h b/chrome/browser/in_process_webkit/indexed_db_callbacks.h index 09a3bab..cc90dd8 100644 --- a/chrome/browser/in_process_webkit/indexed_db_callbacks.h +++ b/chrome/browser/in_process_webkit/indexed_db_callbacks.h @@ -7,7 +7,6 @@ #pragma once #include "base/basictypes.h" -#include "base/logging.h" #include "base/ref_counted.h" #include "chrome/browser/in_process_webkit/indexed_db_dispatcher_host.h" #include "chrome/common/indexed_db_key.h" @@ -161,7 +160,7 @@ class IndexedDBCallbacks<void> : public IndexedDBCallbacksBase { class IndexedDBTransactionCallbacks : public WebKit::WebIDBTransactionCallbacks { -public: + public: IndexedDBTransactionCallbacks( IndexedDBDispatcherHost* dispatcher_host, int transaction_id) : dispatcher_host_(dispatcher_host), transaction_id_(transaction_id) { @@ -176,10 +175,9 @@ public: return transaction_id_; } -private: + private: scoped_refptr<IndexedDBDispatcherHost> dispatcher_host_; int transaction_id_; }; #endif // CHROME_BROWSER_IN_PROCESS_WEBKIT_INDEXED_DB_CALLBACKS_H_ - diff --git a/chrome/browser/in_process_webkit/indexed_db_context.cc b/chrome/browser/in_process_webkit/indexed_db_context.cc index ceaf8d9..6626c748 100644 --- a/chrome/browser/in_process_webkit/indexed_db_context.cc +++ b/chrome/browser/in_process_webkit/indexed_db_context.cc @@ -4,6 +4,7 @@ #include "chrome/browser/in_process_webkit/indexed_db_context.h" +#include "base/logging.h" #include "third_party/WebKit/WebKit/chromium/public/WebIDBDatabase.h" #include "third_party/WebKit/WebKit/chromium/public/WebIDBFactory.h" diff --git a/chrome/browser/in_process_webkit/indexed_db_context.h b/chrome/browser/in_process_webkit/indexed_db_context.h index cb3ce05..d75e75c 100644 --- a/chrome/browser/in_process_webkit/indexed_db_context.h +++ b/chrome/browser/in_process_webkit/indexed_db_context.h @@ -7,7 +7,6 @@ #pragma once #include "base/basictypes.h" -#include "base/logging.h" #include "base/scoped_ptr.h" namespace WebKit { diff --git a/chrome/browser/in_process_webkit/webkit_thread.h b/chrome/browser/in_process_webkit/webkit_thread.h index f09b79b..eeed43c 100644 --- a/chrome/browser/in_process_webkit/webkit_thread.h +++ b/chrome/browser/in_process_webkit/webkit_thread.h @@ -6,8 +6,8 @@ #define CHROME_BROWSER_IN_PROCESS_WEBKIT_WEBKIT_THREAD_H_ #pragma once +#include "base/basictypes.h" #include "base/lock.h" -#include "base/logging.h" #include "base/scoped_ptr.h" #include "base/thread.h" #include "chrome/browser/chrome_thread.h" |