summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--content/common/content_client.cc6
-rw-r--r--content/common/content_client.h1
2 files changed, 6 insertions, 1 deletions
diff --git a/content/common/content_client.cc b/content/common/content_client.cc
index fb22d84..421e781 100644
--- a/content/common/content_client.cc
+++ b/content/common/content_client.cc
@@ -17,6 +17,10 @@ ContentClient* GetContentClient() {
}
ContentClient::ContentClient() :
- browser_client_(NULL) {}
+ browser_client_(NULL) {
+}
+
+ContentClient::~ContentClient() {
+}
} // namespace content
diff --git a/content/common/content_client.h b/content/common/content_client.h
index a208654..542b770 100644
--- a/content/common/content_client.h
+++ b/content/common/content_client.h
@@ -25,6 +25,7 @@ ContentClient* GetContentClient();
class ContentClient {
public:
ContentClient();
+ ~ContentClient();
// Gets or sets the embedder API for participating in browser logic.
// The client must be set early, before any content code is called.