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_
|
|
|
|
|
2017-05-18 22:06:57 +00:00
|
|
|
#include <string>
|
|
|
|
|
2013-03-14 13:03:50 +00:00
|
|
|
#include "base/compiler_specific.h"
|
|
|
|
#include "content/public/common/content_client.h"
|
|
|
|
|
|
|
|
namespace brightray {
|
|
|
|
|
2015-07-23 10:18:03 +00:00
|
|
|
std::string GetBrightrayUserAgent();
|
|
|
|
|
2013-03-14 13:03:50 +00:00
|
|
|
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:
|
2014-10-31 11:42:06 +00:00
|
|
|
std::string GetProduct() const override;
|
|
|
|
std::string GetUserAgent() const override;
|
2015-06-26 09:39:41 +00:00
|
|
|
base::string16 GetLocalizedString(int message_id) const override;
|
2014-10-31 11:42:06 +00:00
|
|
|
base::StringPiece GetDataResource(int resource_id,
|
|
|
|
ui::ScaleFactor) const override;
|
|
|
|
gfx::Image& GetNativeImageNamed(int resource_id) const override;
|
2016-09-06 08:22:52 +00:00
|
|
|
base::RefCountedMemory* GetDataResourceBytes(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
|
|
|
|
2017-05-18 22:05:25 +00:00
|
|
|
#endif // BRIGHTRAY_COMMON_CONTENT_CLIENT_H_
|