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

Unified Diff: gpu/command_buffer/client/gles2_cmd_helper.h

Issue 9662026: Move constructor and destructor of GLES2CmdHelper out of line (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: export 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | gpu/command_buffer/client/gles2_cmd_helper.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gpu/command_buffer/client/gles2_cmd_helper.h
diff --git a/gpu/command_buffer/client/gles2_cmd_helper.h b/gpu/command_buffer/client/gles2_cmd_helper.h
index 2db951c0f8e74e3adbc29a72b75ad2739cba03c5..f7b7b8e309857d02c5cf8d3d6ce8fa29967c1fa1 100644
--- a/gpu/command_buffer/client/gles2_cmd_helper.h
+++ b/gpu/command_buffer/client/gles2_cmd_helper.h
@@ -5,6 +5,7 @@
#ifndef GPU_COMMAND_BUFFER_CLIENT_GLES2_CMD_HELPER_H_
#define GPU_COMMAND_BUFFER_CLIENT_GLES2_CMD_HELPER_H_
+#include "../../gpu_export.h"
#include "../client/cmd_buffer_helper.h"
#include "../common/gles2_cmd_format.h"
@@ -12,13 +13,10 @@ namespace gpu {
namespace gles2 {
// A class that helps write GL command buffers.
-class GLES2CmdHelper : public CommandBufferHelper {
+class GPU_EXPORT GLES2CmdHelper : public CommandBufferHelper {
public:
- explicit GLES2CmdHelper(CommandBuffer* command_buffer)
- : CommandBufferHelper(command_buffer) {
- }
- virtual ~GLES2CmdHelper() {
- }
+ explicit GLES2CmdHelper(CommandBuffer* command_buffer);
+ virtual ~GLES2CmdHelper();
// Include the auto-generated part of this class. We split this because it
// means we can easily edit the non-auto generated parts right here in this
« no previous file with comments | « no previous file | gpu/command_buffer/client/gles2_cmd_helper.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698