Chromium Code Reviews| Index: content/common/content_webkitplatformsupport_impl.h |
| diff --git a/content/common/content_webkitplatformsupport_impl.h b/content/common/content_webkitplatformsupport_impl.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..1904042cf26b9a8933b76dbbc1c904778db1862c |
| --- /dev/null |
| +++ b/content/common/content_webkitplatformsupport_impl.h |
| @@ -0,0 +1,38 @@ |
| +// Copyright (c) 2011 The Chromium Authors. All rights reserved. |
|
jam
2011/11/22 01:24:26
nit: drop the "content" from the filenames since i
piman
2011/11/22 01:53:40
Done.
|
| +// Use of this source code is governed by a BSD-style license that can be |
| +// found in the LICENSE file. |
| + |
| +#ifndef CONTENT_COMMON_CONTENT_WEBKITPLATFORMSUPPORT_IMPL_H_ |
| +#define CONTENT_COMMON_CONTENT_WEBKITPLATFORMSUPPORT_IMPL_H_ |
| +#pragma once |
| + |
| +#include "base/compiler_specific.h" |
| +#include "content/common/content_export.h" |
| +#include "webkit/glue/webkitplatformsupport_impl.h" |
| + |
| +namespace content { |
| + |
| +// This is a specialization of WebKitPlatformSupportImpl that implements the |
| +// embedder functions in terms of ContentClient. |
| +class CONTENT_EXPORT WebKitPlatformSupportImpl |
| + : NON_EXPORTED_BASE(public webkit_glue::WebKitPlatformSupportImpl) { |
| + public: |
| + WebKitPlatformSupportImpl(); |
| + virtual ~WebKitPlatformSupportImpl(); |
| + |
| + virtual string16 GetLocalizedString(int message_id) OVERRIDE; |
| + virtual base::StringPiece GetDataResource(int resource_id) OVERRIDE; |
| + virtual void GetPlugins(bool refresh, |
| + std::vector<webkit::WebPluginInfo>* plugins) OVERRIDE; |
| + virtual webkit_glue::ResourceLoaderBridge* CreateResourceLoader( |
| + const webkit_glue::ResourceLoaderBridge::RequestInfo& request_info) |
| + OVERRIDE; |
| + virtual webkit_glue::WebSocketStreamHandleBridge* CreateWebSocketBridge( |
| + WebKit::WebSocketStreamHandle* handle, |
| + webkit_glue::WebSocketStreamHandleDelegate* delegate) OVERRIDE; |
| +}; |
| + |
| +} // namespace content |
| + |
| +#endif // CONTENT_COMMON_CONTENT_WEBKITPLATFORMSUPPORT_IMPL_H_ |
| + |