// Copyright 2012 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef CONTENT_PUBLIC_UTILITY_UTILITY_THREAD_H_ #define CONTENT_PUBLIC_UTILITY_UTILITY_THREAD_H_ #include "base/auto_reset.h" #include "build/build_config.h" #include "content/common/content_export.h" #include "content/public/child/child_thread.h" namespace content { class CONTENT_EXPORT UtilityThread : virtual public ChildThread { … }; } // namespace content #endif // CONTENT_PUBLIC_UTILITY_UTILITY_THREAD_H_