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

Unified Diff: chrome/browser/net/connection_tester.h

Issue 10694111: RefCounted types should not have public destructors (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix android & Win compiles Created 8 years, 5 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 | « chrome/browser/extensions/api/identity/web_auth_flow.h ('k') | content/common/gpu/sync_point_manager.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/net/connection_tester.h
diff --git a/chrome/browser/net/connection_tester.h b/chrome/browser/net/connection_tester.h
index 74b8e5e47455a56bd1890edabf051fa7a9da75cc..6f15e74fc8299d77d3e85c6e2b453d9e3a6d05bf 100644
--- a/chrome/browser/net/connection_tester.h
+++ b/chrome/browser/net/connection_tester.h
@@ -103,8 +103,6 @@ class ConnectionTester {
// delegate methods.
class Delegate {
public:
- virtual ~Delegate() {}
-
// Called once the test suite is about to start.
virtual void OnStartConnectionTestSuite() = 0;
@@ -122,6 +120,9 @@ class ConnectionTester {
// Called once ALL tests have completed.
virtual void OnCompletedConnectionTestSuite() = 0;
+
+ protected:
+ virtual ~Delegate() {}
};
// Constructs a ConnectionTester that notifies test progress to |delegate|.
« no previous file with comments | « chrome/browser/extensions/api/identity/web_auth_flow.h ('k') | content/common/gpu/sync_point_manager.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698