summaryrefslogtreecommitdiffstats
path: root/chrome/browser/browser_process_impl.h
diff options
context:
space:
mode:
authoragl@chromium.org <agl@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-04-21 01:48:32 +0000
committeragl@chromium.org <agl@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-04-21 01:48:32 +0000
commita0b1c513361089833a7b2ecdc5483eff0d944d60 (patch)
tree5ac22957699f58a2feda8620a420d4ad186507d6 /chrome/browser/browser_process_impl.h
parent6d85f696f637775ef241d74b5733d477f52ccbe7 (diff)
downloadchromium_src-a0b1c513361089833a7b2ecdc5483eff0d944d60.zip
chromium_src-a0b1c513361089833a7b2ecdc5483eff0d944d60.tar.gz
chromium_src-a0b1c513361089833a7b2ecdc5483eff0d944d60.tar.bz2
I managed to break test_shell. Reverting. I'll fix tomorrow.
Reverts r14075 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@14080 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/browser_process_impl.h')
-rw-r--r--chrome/browser/browser_process_impl.h14
1 files changed, 0 insertions, 14 deletions
diff --git a/chrome/browser/browser_process_impl.h b/chrome/browser/browser_process_impl.h
index 0550ad9..55b9dc2 100644
--- a/chrome/browser/browser_process_impl.h
+++ b/chrome/browser/browser_process_impl.h
@@ -73,16 +73,6 @@ class BrowserProcessImpl : public BrowserProcess, public NonThreadSafe {
return db_thread_.get();
}
-#if defined(OS_LINUX)
- virtual base::Thread* background_x11_thread() {
- DCHECK(CalledOnValidThread());
- // The BACKGROUND_X11 thread is created when the IO thread is created.
- if (!created_io_thread_)
- CreateIOThread();
- return background_x11_thread_.get();
- }
-#endif
-
virtual ProfileManager* profile_manager() {
DCHECK(CalledOnValidThread());
if (!created_profile_manager_)
@@ -221,10 +211,6 @@ class BrowserProcessImpl : public BrowserProcess, public NonThreadSafe {
bool created_io_thread_;
scoped_ptr<base::Thread> io_thread_;
-#if defined(OS_LINUX)
- // This shares a created flag with the IO thread.
- scoped_ptr<base::Thread> background_x11_thread_;
-#endif
bool created_file_thread_;
scoped_ptr<base::Thread> file_thread_;