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

Unified Diff: gpu/command_buffer/service/common_decoder.h

Issue 3743001: FBTF: Fix more ctor/dtors found by clang plugin. (Closed) Base URL: http://git.chromium.org/git/chromium.git
Patch Set: Rebase to pick up mac fix on ToT Created 10 years, 2 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 | « gpu/command_buffer/service/buffer_manager.cc ('k') | gpu/command_buffer/service/common_decoder.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gpu/command_buffer/service/common_decoder.h
diff --git a/gpu/command_buffer/service/common_decoder.h b/gpu/command_buffer/service/common_decoder.h
index adfdaac06bca728ddec8d4a7a07d86fe75fb8029..7abc01654a30159fef7397e01c243db0858534ec 100644
--- a/gpu/command_buffer/service/common_decoder.h
+++ b/gpu/command_buffer/service/common_decoder.h
@@ -48,8 +48,8 @@ class CommonDecoder : public AsyncAPIInterface {
// be passed across shared memory.
class Bucket {
public:
- Bucket() : size_(0) {
- }
+ Bucket();
+ ~Bucket();
size_t size() const {
return size_;
@@ -92,10 +92,8 @@ class CommonDecoder : public AsyncAPIInterface {
DISALLOW_COPY_AND_ASSIGN(Bucket);
};
- CommonDecoder() : engine_(NULL) {
- }
- virtual ~CommonDecoder() {
- }
+ CommonDecoder();
+ virtual ~CommonDecoder();
// Sets the engine, to get shared memory buffers from, and to set the token
// to.
« no previous file with comments | « gpu/command_buffer/service/buffer_manager.cc ('k') | gpu/command_buffer/service/common_decoder.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698