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

Side by Side Diff: content/shell/renderer/shell_media_stream_client.cc

Issue 18868005: content: Migrate from googleurl/ includes to url/ ones. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 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 | Annotate | Revision Log
« no previous file with comments | « content/shell/common/shell_test_configuration.h ('k') | content/shell/shell_application_mac.mm » ('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 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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 #include "content/shell/renderer/shell_media_stream_client.h" 5 #include "content/shell/renderer/shell_media_stream_client.h"
6 6
7 #include "content/shell/renderer/shell_video_frame_provider.h" 7 #include "content/shell/renderer/shell_video_frame_provider.h"
8 #include "googleurl/src/gurl.h"
9 #include "third_party/WebKit/public/platform/WebMediaStream.h" 8 #include "third_party/WebKit/public/platform/WebMediaStream.h"
10 #include "third_party/WebKit/public/platform/WebMediaStreamTrack.h" 9 #include "third_party/WebKit/public/platform/WebMediaStreamTrack.h"
11 #include "third_party/WebKit/public/platform/WebVector.h" 10 #include "third_party/WebKit/public/platform/WebVector.h"
12 #include "third_party/WebKit/public/web/WebMediaStreamRegistry.h" 11 #include "third_party/WebKit/public/web/WebMediaStreamRegistry.h"
12 #include "url/gurl.h"
13 #include "webkit/renderer/media/media_stream_audio_renderer.h" 13 #include "webkit/renderer/media/media_stream_audio_renderer.h"
14 14
15 using namespace WebKit; 15 using namespace WebKit;
16 16
17 namespace { 17 namespace {
18 18
19 static const int kVideoCaptureWidth = 352; 19 static const int kVideoCaptureWidth = 352;
20 static const int kVideoCaptureHeight = 288; 20 static const int kVideoCaptureHeight = 288;
21 static const int kVideoCaptureFrameDurationMs = 33; 21 static const int kVideoCaptureFrameDurationMs = 33;
22 22
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
60 error_cb, 60 error_cb,
61 repaint_cb); 61 repaint_cb);
62 } 62 }
63 63
64 scoped_refptr<webkit_media::MediaStreamAudioRenderer> 64 scoped_refptr<webkit_media::MediaStreamAudioRenderer>
65 ShellMediaStreamClient::GetAudioRenderer(const GURL& url) { 65 ShellMediaStreamClient::GetAudioRenderer(const GURL& url) {
66 return NULL; 66 return NULL;
67 } 67 }
68 68
69 } // namespace content 69 } // namespace content
OLDNEW
« no previous file with comments | « content/shell/common/shell_test_configuration.h ('k') | content/shell/shell_application_mac.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698