Index: content/shell/shell_browser_context.h |
diff --git a/content/shell/shell_browser_context.h b/content/shell/shell_browser_context.h |
index 68281654763d3c7b0dd85dc48664b65880a46c13..4c253ac640d2e8213ccb1cdca10f71cffb261151 100644 |
--- a/content/shell/shell_browser_context.h |
+++ b/content/shell/shell_browser_context.h |
@@ -11,6 +11,7 @@ |
#include "base/memory/ref_counted.h" |
#include "base/memory/scoped_ptr.h" |
#include "content/public/browser/browser_context.h" |
+#include "media/audio/audio_manager.h" |
jam
2012/02/03 00:49:44
nit: this include shouldn't be needed here, just a
vrk (LEFT CHROMIUM)
2012/03/06 02:07:50
Done.
|
class DownloadManager; |
class DownloadStatusUpdater; |
@@ -52,6 +53,7 @@ class ShellBrowserContext : public BrowserContext { |
private: |
void CreateQuotaManagerAndClients(); |
+ AudioManager* GetAudioManager(); |
FilePath path_; |
scoped_ptr<ResourceContext> resource_context_; |
@@ -69,6 +71,7 @@ class ShellBrowserContext : public BrowserContext { |
scoped_refptr<fileapi::FileSystemContext> file_system_context_; |
scoped_refptr<quota::QuotaManager> quota_manager_; |
scoped_refptr<ChromeBlobStorageContext> blob_storage_context_; |
+ scoped_refptr<AudioManager> audio_manager_; |
ShellBrowserMainParts* shell_main_parts_; |