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