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

Unified Diff: chrome/common/web_resource/web_resource_unpacker.h

Issue 3522004: FBTF: Move ctors/dtors into implementation files. Adds ctors/dtors to non-POD structs. (Closed) Base URL: http://src.chromium.org/git/chromium.git
Patch Set: Created 10 years, 3 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
Index: chrome/common/web_resource/web_resource_unpacker.h
diff --git a/chrome/common/web_resource/web_resource_unpacker.h b/chrome/common/web_resource/web_resource_unpacker.h
index c49f2fab57dc6ad5ff9f6a6b7315b0b8548e5d26..0728c2c1936c7adeb842032475903cccdff9e4c9 100644
--- a/chrome/common/web_resource/web_resource_unpacker.h
+++ b/chrome/common/web_resource/web_resource_unpacker.h
@@ -25,8 +25,8 @@ class WebResourceUnpacker {
static const char* kInvalidDataTypeError;
static const char* kUnexpectedJSONFormatError;
- explicit WebResourceUnpacker(const std::string &resource_data)
- : resource_data_(resource_data) {}
+ explicit WebResourceUnpacker(const std::string &resource_data);
+ ~WebResourceUnpacker();
// This does the actual parsing. In case of an error, error_message_
// is set to an appropriate value.

Powered by Google App Engine
This is Rietveld 408576698