// 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_TEST_TEST_CONTENT_BROWSER_CLIENT_H_ #define CONTENT_TEST_TEST_CONTENT_BROWSER_CLIENT_H_ #include <string> #include "base/files/scoped_temp_dir.h" #include "build/build_config.h" #include "content/public/browser/content_browser_client.h" namespace content { // Base for unit tests that need a ContentBrowserClient. Browser tests should // not use this class, instead use ContentBrowserTestContentBrowserClient. class TestContentBrowserClient : public ContentBrowserClient { … }; } // namespace content #endif // CONTENT_TEST_TEST_CONTENT_BROWSER_CLIENT_H_