summaryrefslogtreecommitdiffstats
path: root/content/public/browser/browser_context.h
diff options
context:
space:
mode:
Diffstat (limited to 'content/public/browser/browser_context.h')
-rw-r--r--content/public/browser/browser_context.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/content/public/browser/browser_context.h b/content/public/browser/browser_context.h
index 6832bec..9618315 100644
--- a/content/public/browser/browser_context.h
+++ b/content/public/browser/browser_context.h
@@ -7,6 +7,7 @@
#pragma once
#include "base/hash_tables.h"
+#include "base/supports_user_data.h"
#include "content/common/content_export.h"
namespace fileapi {
@@ -40,9 +41,9 @@ class SpeechInputPreferences;
// This class holds the context needed for a browsing session.
// It lives on the UI thread.
-class CONTENT_EXPORT BrowserContext {
+class CONTENT_EXPORT BrowserContext : public base::SupportsUserData {
public:
- virtual ~BrowserContext();
+ virtual ~BrowserContext() {}
// Returns the path of the directory where this context's data is stored.
virtual FilePath GetPath() = 0;