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

Side by Side Diff: components/html_viewer/html_document.h

Issue 1234573004: Remove old createMediaPlayer method from WebFrameClient implementations (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: removed redundant include Created 5 years, 5 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
« no previous file with comments | « components/html_viewer/frame.cc ('k') | components/html_viewer/html_document.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 COMPONENTS_HTML_VIEWER_HTML_DOCUMENT_H_ 5 #ifndef COMPONENTS_HTML_VIEWER_HTML_DOCUMENT_H_
6 #define COMPONENTS_HTML_VIEWER_HTML_DOCUMENT_H_ 6 #define COMPONENTS_HTML_VIEWER_HTML_DOCUMENT_H_
7 7
8 #include <set> 8 #include <set>
9 9
10 #include "base/callback.h" 10 #include "base/callback.h"
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after
87 ~HTMLDocument() override; 87 ~HTMLDocument() override;
88 88
89 // WebViewClient methods: 89 // WebViewClient methods:
90 virtual blink::WebStorageNamespace* createSessionStorageNamespace(); 90 virtual blink::WebStorageNamespace* createSessionStorageNamespace();
91 91
92 // WebWidgetClient methods: 92 // WebWidgetClient methods:
93 void initializeLayerTreeView() override; 93 void initializeLayerTreeView() override;
94 blink::WebLayerTreeView* layerTreeView() override; 94 blink::WebLayerTreeView* layerTreeView() override;
95 95
96 // WebFrameClient methods: 96 // WebFrameClient methods:
97 // TODO(srirama): Remove this method once blink updated.
98 virtual blink::WebMediaPlayer* createMediaPlayer( 97 virtual blink::WebMediaPlayer* createMediaPlayer(
99 blink::WebLocalFrame* frame, 98 blink::WebLocalFrame* frame,
100 const blink::WebURL& url, 99 const blink::WebURL& url,
101 blink::WebMediaPlayerClient* client,
102 blink::WebContentDecryptionModule* initial_cdm);
103 virtual blink::WebMediaPlayer* createMediaPlayer(
104 blink::WebLocalFrame* frame,
105 const blink::WebURL& url,
106 blink::WebMediaPlayerClient* client, 100 blink::WebMediaPlayerClient* client,
107 blink::WebMediaPlayerEncryptedMediaClient* encrypted_client, 101 blink::WebMediaPlayerEncryptedMediaClient* encrypted_client,
108 blink::WebContentDecryptionModule* initial_cdm); 102 blink::WebContentDecryptionModule* initial_cdm);
109 virtual blink::WebFrame* createChildFrame( 103 virtual blink::WebFrame* createChildFrame(
110 blink::WebLocalFrame* parent, 104 blink::WebLocalFrame* parent,
111 blink::WebTreeScopeType scope, 105 blink::WebTreeScopeType scope,
112 const blink::WebString& frameName, 106 const blink::WebString& frameName,
113 blink::WebSandboxFlags sandboxFlags); 107 blink::WebSandboxFlags sandboxFlags);
114 virtual void frameDetached(blink::WebFrame* frame, DetachType type); 108 virtual void frameDetached(blink::WebFrame* frame, DetachType type);
115 virtual blink::WebCookieJar* cookieJar(blink::WebLocalFrame* frame); 109 virtual blink::WebCookieJar* cookieJar(blink::WebLocalFrame* frame);
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after
195 scoped_ptr<DevToolsAgentImpl> devtools_agent_; 189 scoped_ptr<DevToolsAgentImpl> devtools_agent_;
196 190
197 DeleteCallback delete_callback_; 191 DeleteCallback delete_callback_;
198 192
199 DISALLOW_COPY_AND_ASSIGN(HTMLDocument); 193 DISALLOW_COPY_AND_ASSIGN(HTMLDocument);
200 }; 194 };
201 195
202 } // namespace html_viewer 196 } // namespace html_viewer
203 197
204 #endif // COMPONENTS_HTML_VIEWER_HTML_DOCUMENT_H_ 198 #endif // COMPONENTS_HTML_VIEWER_HTML_DOCUMENT_H_
OLDNEW
« no previous file with comments | « components/html_viewer/frame.cc ('k') | components/html_viewer/html_document.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698