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 ANDROID_WEBVIEW_COMMON_AW_CONTENT_CLIENT_H_
6 #define ANDROID_WEBVIEW_COMMON_AW_CONTENT_CLIENT_H_
8 #include "content/public/common/content_client.h"
10 #include "base/compiler_specific.h"
12 namespace android_webview
{
14 std::string
GetUserAgent();
15 // extra text to be put into the OS section of the user agent text
16 std::string
GetExtraOSUserAgentInfo();
18 class AwContentClient
: public content::ContentClient
{
20 // ContentClient implementation.
21 std::string
GetProduct() const override
;
22 std::string
GetUserAgent() const override
;
23 base::string16
GetLocalizedString(int message_id
) const override
;
24 base::StringPiece
GetDataResource(
26 ui::ScaleFactor scale_factor
) const override
;
27 bool CanSendWhileSwappedOut(const IPC::Message
* message
) override
;
30 } // namespace android_webview
32 #endif // ANDROID_WEBVIEW_COMMON_AW_CONTENT_CLIENT_H_