// Copyright (c) 2011 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef CONTENT_SHELL_SHELL_BROWSER_MAIN_H_ #define CONTENT_SHELL_SHELL_BROWSER_MAIN_H_ #pragma once #include "base/memory/scoped_ptr.h" #include "content/browser/browser_main.h" class ResourceDispatcherHost; namespace base { class Thread; } namespace ui { class Clipboard; } namespace content { class ShellBrowserContext; class ShellBrowserMainParts : public BrowserMainParts { public: explicit ShellBrowserMainParts(const MainFunctionParams& parameters); virtual ~ShellBrowserMainParts(); virtual void PreMainMessageLoopRun(); ResourceDispatcherHost* GetResourceDispatcherHost(); ui::Clipboard* GetClipboard(); base::Thread* io_thread() { return io_thread_.get(); } base::Thread* file_thread() { return file_thread_.get(); } private: scoped_ptr browser_context_; scoped_ptr resource_dispatcher_host_; scoped_ptr clipboard_; scoped_ptr io_thread_; scoped_ptr file_thread_; scoped_ptr db_thread_; scoped_ptr process_launcher_thread_; scoped_ptr cache_thread_; DISALLOW_COPY_AND_ASSIGN(ShellBrowserMainParts); }; } // namespace content #endif // CONTENT_SHELL_SHELL_BROWSER_MAIN_H_