OLD | NEW |
---|---|
(Empty) | |
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. | |
4 | |
5 #ifndef ANDROID_WEBVIEW_COMMON_AW_CONTENT_CLIENT_H_ | |
6 #define ANDROID_WEBVIEW_COMMON_AW_CONTENT_CLIENT_H_ | |
7 | |
8 #include "content/public/common/content_client.h" | |
9 | |
10 #include "base/compiler_specific.h" | |
11 | |
12 namespace webkit { | |
13 namespace npapi { | |
14 class PluginList; | |
15 } | |
16 } | |
17 | |
18 namespace android_webview { | |
19 | |
20 class AwContentClient : public content::ContentClient { | |
21 | |
boliu
2012/10/08 22:43:43
This unintentionally left as private, but hey, not
joth
2012/10/09 02:00:47
:)
yeah general style is to make them public anyw
boliu
2012/10/09 18:01:47
Done.
| |
22 // ContentClient implementation. | |
23 virtual void SetActiveURL(const GURL& url) OVERRIDE; | |
24 virtual void SetGpuInfo(const content::GPUInfo& gpu_info) OVERRIDE; | |
25 virtual void AddPepperPlugins( | |
26 std::vector<content::PepperPluginInfo>* plugins) OVERRIDE; | |
27 virtual void AddNPAPIPlugins( | |
28 webkit::npapi::PluginList* plugin_list) OVERRIDE; | |
29 virtual void AddAdditionalSchemes( | |
30 std::vector<std::string>* standard_schemes, | |
31 std::vector<std::string>* savable_schemes) OVERRIDE; | |
32 virtual bool HasWebUIScheme(const GURL& url) const OVERRIDE; | |
33 virtual bool CanHandleWhileSwappedOut(const IPC::Message& message) OVERRIDE; | |
34 virtual std::string GetProduct() const OVERRIDE; | |
35 virtual std::string GetUserAgent() const OVERRIDE; | |
36 virtual string16 GetLocalizedString(int message_id) const OVERRIDE; | |
37 virtual base::StringPiece GetDataResource( | |
38 int resource_id, | |
39 ui::ScaleFactor scale_factor) const OVERRIDE; | |
40 }; | |
41 | |
42 } // namespace android_webview | |
43 | |
44 #endif // ANDROID_WEBVIEW_COMMON_AW_CONTENT_CLIENT_H_ | |
OLD | NEW |