[tracing] Fix memory tracing controller in single-process-mode.
[chromium-blink-merge.git] / android_webview / common / aw_content_client.h
blob01f4ff8c48a83164c428f8172ce97311641c2421
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 GetProduct();
15 std::string GetUserAgent();
16 // extra text to be put into the OS section of the user agent text
17 std::string GetExtraOSUserAgentInfo();
19 class AwContentClient : public content::ContentClient {
20 public:
21 // ContentClient implementation.
22 std::string GetProduct() const override;
23 std::string GetUserAgent() const override;
24 base::string16 GetLocalizedString(int message_id) const override;
25 base::StringPiece GetDataResource(
26 int resource_id,
27 ui::ScaleFactor scale_factor) const override;
28 bool CanSendWhileSwappedOut(const IPC::Message* message) override;
31 } // namespace android_webview
33 #endif // ANDROID_WEBVIEW_COMMON_AW_CONTENT_CLIENT_H_