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

Unified Diff: webkit/support/test_webmessageportchannel.cc

Issue 10066044: RefCounted types should not have public destructors, webkit/ (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Implementation ordering Created 8 years, 8 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 | « webkit/support/test_webmessageportchannel.h ('k') | webkit/tools/test_shell/simple_file_writer.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/support/test_webmessageportchannel.cc
diff --git a/webkit/support/test_webmessageportchannel.cc b/webkit/support/test_webmessageportchannel.cc
index 8655fd3292eebaa119ef4fe7127e24f78bfb43d8..7a199b99a5bc6a05a0fa063a51ce2ae53b2e9a64 100644
--- a/webkit/support/test_webmessageportchannel.cc
+++ b/webkit/support/test_webmessageportchannel.cc
@@ -41,9 +41,6 @@ TestWebMessagePortChannel::TestWebMessagePortChannel()
AddRef();
}
-TestWebMessagePortChannel::~TestWebMessagePortChannel() {
-}
-
void TestWebMessagePortChannel::setClient(WebMessagePortChannelClient* client) {
client_ = client;
}
@@ -82,6 +79,8 @@ bool TestWebMessagePortChannel::tryGetMessage(WebString* data,
return true;
}
+TestWebMessagePortChannel::~TestWebMessagePortChannel() {}
+
void TestWebMessagePortChannel::queueMessage(Message* message) {
bool was_empty = message_queue_.empty();
message_queue_.push(message);
« no previous file with comments | « webkit/support/test_webmessageportchannel.h ('k') | webkit/tools/test_shell/simple_file_writer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698