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

Unified Diff: chrome/renderer/static_v8_external_string_resource.cc

Issue 9021001: Add an out-of-line destructor to this class. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Explicitly make subclass destructor virtual. Created 9 years 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 | « chrome/renderer/static_v8_external_string_resource.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/renderer/static_v8_external_string_resource.cc
diff --git a/chrome/renderer/static_v8_external_string_resource.cc b/chrome/renderer/static_v8_external_string_resource.cc
index 6a0b5b411bd1cd145fe7e0e72729550380b310dd..4395ffc0a715b7ddbe52d2870975d2b65c8c3db3 100644
--- a/chrome/renderer/static_v8_external_string_resource.cc
+++ b/chrome/renderer/static_v8_external_string_resource.cc
@@ -9,6 +9,9 @@ StaticV8ExternalAsciiStringResource::StaticV8ExternalAsciiStringResource(
: buffer_(buffer) {
}
+StaticV8ExternalAsciiStringResource::~StaticV8ExternalAsciiStringResource() {
Aaron Boodman 2011/12/21 08:21:32 Lucky!
+}
+
const char* StaticV8ExternalAsciiStringResource::data() const {
return buffer_.data();
}
« no previous file with comments | « chrome/renderer/static_v8_external_string_resource.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698