Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(44)

Side by Side Diff: content/common/webkitplatformsupport_impl.h

Issue 9568042: Allow browser compositor to create an offscreen context3D. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | content/common/webkitplatformsupport_impl.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CONTENT_COMMON_CONTENT_WEBKITPLATFORMSUPPORT_IMPL_H_ 5 #ifndef CONTENT_COMMON_CONTENT_WEBKITPLATFORMSUPPORT_IMPL_H_
6 #define CONTENT_COMMON_CONTENT_WEBKITPLATFORMSUPPORT_IMPL_H_ 6 #define CONTENT_COMMON_CONTENT_WEBKITPLATFORMSUPPORT_IMPL_H_
7 #pragma once 7 #pragma once
8 8
9 #include "base/compiler_specific.h" 9 #include "base/compiler_specific.h"
10 #include "content/common/content_export.h" 10 #include "content/common/content_export.h"
(...skipping 12 matching lines...) Expand all
23 virtual string16 GetLocalizedString(int message_id) OVERRIDE; 23 virtual string16 GetLocalizedString(int message_id) OVERRIDE;
24 virtual base::StringPiece GetDataResource(int resource_id) OVERRIDE; 24 virtual base::StringPiece GetDataResource(int resource_id) OVERRIDE;
25 virtual void GetPlugins(bool refresh, 25 virtual void GetPlugins(bool refresh,
26 std::vector<webkit::WebPluginInfo>* plugins) OVERRIDE; 26 std::vector<webkit::WebPluginInfo>* plugins) OVERRIDE;
27 virtual webkit_glue::ResourceLoaderBridge* CreateResourceLoader( 27 virtual webkit_glue::ResourceLoaderBridge* CreateResourceLoader(
28 const webkit_glue::ResourceLoaderBridge::RequestInfo& request_info) 28 const webkit_glue::ResourceLoaderBridge::RequestInfo& request_info)
29 OVERRIDE; 29 OVERRIDE;
30 virtual webkit_glue::WebSocketStreamHandleBridge* CreateWebSocketBridge( 30 virtual webkit_glue::WebSocketStreamHandleBridge* CreateWebSocketBridge(
31 WebKit::WebSocketStreamHandle* handle, 31 WebKit::WebSocketStreamHandle* handle,
32 webkit_glue::WebSocketStreamHandleDelegate* delegate) OVERRIDE; 32 webkit_glue::WebSocketStreamHandleDelegate* delegate) OVERRIDE;
33 virtual WebKit::WebGraphicsContext3D* createOffscreenGraphicsContext3D(
34 const WebKit::WebGraphicsContext3D::Attributes& attributes);
33 }; 35 };
34 36
35 } // namespace content 37 } // namespace content
36 38
37 #endif // CONTENT_COMMON_CONTENT_WEBKITPLATFORMSUPPORT_IMPL_H_ 39 #endif // CONTENT_COMMON_CONTENT_WEBKITPLATFORMSUPPORT_IMPL_H_
38 40
OLDNEW
« no previous file with comments | « no previous file | content/common/webkitplatformsupport_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698