Disable InstantExtendedTest.UpdateSearchQueryOnBackNavigation, InstantExtendedTest...
[chromium-blink-merge.git] / content / utility / utility_thread_impl.h
blob59633705452b9decba631f267af4b617ea491d71
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef CONTENT_UTILITY_UTILITY_THREAD_IMPL_H_
6 #define CONTENT_UTILITY_UTILITY_THREAD_IMPL_H_
8 #include <string>
9 #include <vector>
11 #include "base/basictypes.h"
12 #include "base/compiler_specific.h"
13 #include "content/child/child_thread.h"
14 #include "content/common/content_export.h"
15 #include "content/public/utility/utility_thread.h"
17 namespace base {
18 class FilePath;
21 namespace content {
22 class WebKitPlatformSupportImpl;
24 // This class represents the background thread where the utility task runs.
25 class UtilityThreadImpl : public UtilityThread,
26 public ChildThread {
27 public:
28 UtilityThreadImpl();
29 virtual ~UtilityThreadImpl();
30 virtual void Shutdown() OVERRIDE;
32 virtual bool Send(IPC::Message* msg) OVERRIDE;
33 virtual void ReleaseProcessIfNeeded() OVERRIDE;
34 #if defined(OS_WIN)
35 virtual void PreCacheFont(const LOGFONT& log_font) OVERRIDE;
36 virtual void ReleaseCachedFonts() OVERRIDE;
37 #endif
39 private:
40 // ChildThread implementation.
41 virtual bool OnControlMessageReceived(const IPC::Message& msg) OVERRIDE;
43 // IPC message handlers.
44 void OnBatchModeStarted();
45 void OnBatchModeFinished();
47 #if defined(OS_POSIX)
48 void OnLoadPlugins(const std::vector<base::FilePath>& plugin_paths);
49 #endif // OS_POSIX
51 // True when we're running in batch mode.
52 bool batch_mode_;
54 scoped_ptr<WebKitPlatformSupportImpl> webkit_platform_support_;
56 DISALLOW_COPY_AND_ASSIGN(UtilityThreadImpl);
59 } // namespace content
61 #endif // CONTENT_UTILITY_UTILITY_THREAD_IMPL_H_