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

Unified Diff: content/shell/shell_browser_context.h

Issue 9316077: Enable audio/video tag in content_shell (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 11 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
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_;

Powered by Google App Engine
This is Rietveld 408576698