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_TEST_TEST_CONTENT_CLIENT_H_
6 #define CONTENT_TEST_TEST_CONTENT_CLIENT_H_
11 #include "base/compiler_specific.h"
12 #include "content/public/common/content_client.h"
13 #include "ui/base/resource/data_pack.h"
17 class TestContentClient
: public ContentClient
{
20 ~TestContentClient() override
;
23 std::string
GetUserAgent() const override
;
24 base::StringPiece
GetDataResource(
26 ui::ScaleFactor scale_factor
) const override
;
29 ui::DataPack data_pack_
;
31 DISALLOW_COPY_AND_ASSIGN(TestContentClient
);
34 } // namespace content
36 #endif // CONTENT_TEST_TEST_CONTENT_CLIENT_H_