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

Side by Side Diff: chrome/renderer/chrome_content_renderer_client.h

Issue 8980008: Integrate HTMLMediaElement with Web Audio API's MediaElementAudioSourceNode (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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CHROME_RENDERER_CHROME_CONTENT_RENDERER_CLIENT_H_ 5 #ifndef CHROME_RENDERER_CHROME_CONTENT_RENDERER_CLIENT_H_
6 #define CHROME_RENDERER_CHROME_CONTENT_RENDERER_CLIENT_H_ 6 #define CHROME_RENDERER_CHROME_CONTENT_RENDERER_CLIENT_H_
7 #pragma once 7 #pragma once
8 8
9 #include <set> 9 #include <set>
10 #include <string> 10 #include <string>
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
57 virtual void GetNavigationErrorStrings( 57 virtual void GetNavigationErrorStrings(
58 const WebKit::WebURLRequest& failed_request, 58 const WebKit::WebURLRequest& failed_request,
59 const WebKit::WebURLError& error, 59 const WebKit::WebURLError& error,
60 std::string* error_html, 60 std::string* error_html,
61 string16* error_description) OVERRIDE; 61 string16* error_description) OVERRIDE;
62 virtual bool OverrideCreateWebMediaPlayer( 62 virtual bool OverrideCreateWebMediaPlayer(
63 content::RenderView* render_view, 63 content::RenderView* render_view,
64 WebKit::WebMediaPlayerClient* client, 64 WebKit::WebMediaPlayerClient* client,
65 base::WeakPtr<webkit_media::WebMediaPlayerDelegate> delegate, 65 base::WeakPtr<webkit_media::WebMediaPlayerDelegate> delegate,
66 media::FilterCollection* collection, 66 media::FilterCollection* collection,
67 WebKit::WebAudioSourceProvider* audio_source_provider,
67 media::MessageLoopFactory* message_loop_factory, 68 media::MessageLoopFactory* message_loop_factory,
68 webkit_media::MediaStreamClient* media_stream_client, 69 webkit_media::MediaStreamClient* media_stream_client,
69 media::MediaLog* media_log, 70 media::MediaLog* media_log,
70 webkit_media::WebMediaPlayerImpl** player) OVERRIDE; 71 webkit_media::WebMediaPlayerImpl** player) OVERRIDE;
71 virtual bool RunIdleHandlerWhenWidgetsHidden() OVERRIDE; 72 virtual bool RunIdleHandlerWhenWidgetsHidden() OVERRIDE;
72 virtual bool AllowPopup(const GURL& creator) OVERRIDE; 73 virtual bool AllowPopup(const GURL& creator) OVERRIDE;
73 virtual bool ShouldFork(WebKit::WebFrame* frame, 74 virtual bool ShouldFork(WebKit::WebFrame* frame,
74 const GURL& url, 75 const GURL& url,
75 bool is_content_initiated, 76 bool is_content_initiated,
76 bool is_initial_navigation, 77 bool is_initial_navigation,
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after
153 scoped_ptr<VisitedLinkSlave> visited_link_slave_; 154 scoped_ptr<VisitedLinkSlave> visited_link_slave_;
154 scoped_ptr<safe_browsing::PhishingClassifierFilter> phishing_classifier_; 155 scoped_ptr<safe_browsing::PhishingClassifierFilter> phishing_classifier_;
155 156
156 // Set of origins that can use TCP/UDP private APIs from NaCl. 157 // Set of origins that can use TCP/UDP private APIs from NaCl.
157 std::set<std::string> allowed_socket_origins_; 158 std::set<std::string> allowed_socket_origins_;
158 }; 159 };
159 160
160 } // namespace chrome 161 } // namespace chrome
161 162
162 #endif // CHROME_RENDERER_CHROME_CONTENT_RENDERER_CLIENT_H_ 163 #endif // CHROME_RENDERER_CHROME_CONTENT_RENDERER_CLIENT_H_
OLDNEW
« no previous file with comments | « no previous file | chrome/renderer/chrome_content_renderer_client.cc » ('j') | webkit/media/webmediaplayer_impl.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698