2013-03-14 13:03:50 +00:00
|
|
|
// Copyright (c) 2012 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-CHROMIUM file.
|
|
|
|
|
|
|
|
#ifndef BRIGHTRAY_COMMON_CONTENT_CLIENT_H_
|
|
|
|
#define BRIGHTRAY_COMMON_CONTENT_CLIENT_H_
|
|
|
|
|
|
|
|
#include "base/compiler_specific.h"
|
|
|
|
#include "content/public/common/content_client.h"
|
|
|
|
|
|
|
|
namespace brightray {
|
|
|
|
|
|
|
|
class ContentClient : public content::ContentClient {
|
2013-11-18 00:03:09 +00:00
|
|
|
public:
|
2013-03-14 13:03:50 +00:00
|
|
|
ContentClient();
|
|
|
|
~ContentClient();
|
|
|
|
|
2013-11-18 00:03:09 +00:00
|
|
|
private:
|
2013-04-08 16:41:30 +00:00
|
|
|
virtual std::string GetProduct() const OVERRIDE;
|
2013-03-14 13:03:50 +00:00
|
|
|
virtual std::string GetUserAgent() const OVERRIDE;
|
2013-11-18 00:03:09 +00:00
|
|
|
virtual base::StringPiece GetDataResource(int resource_id,
|
|
|
|
ui::ScaleFactor) const OVERRIDE;
|
2013-04-27 02:49:24 +00:00
|
|
|
virtual gfx::Image& GetNativeImageNamed(int resource_id) const OVERRIDE;
|
2013-03-14 13:03:50 +00:00
|
|
|
|
|
|
|
DISALLOW_COPY_AND_ASSIGN(ContentClient);
|
|
|
|
};
|
|
|
|
|
2013-11-17 23:20:17 +00:00
|
|
|
} // namespace brightray
|
2013-03-14 13:03:50 +00:00
|
|
|
|
|
|
|
#endif
|