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

Side by Side Diff: content/renderer/media/android/media_info_loader.h

Issue 23483037: Fix compilation error. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 3 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 | « no previous file | content/renderer/media/android/media_info_loader.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 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 #ifndef CONTENT_RENDERER_MEDIA_ANDROID_MEDIA_INFO_LOADER_H_ 5 #ifndef CONTENT_RENDERER_MEDIA_ANDROID_MEDIA_INFO_LOADER_H_
6 #define CONTENT_RENDERER_MEDIA_ANDROID_MEDIA_INFO_LOADER_H_ 6 #define CONTENT_RENDERER_MEDIA_ANDROID_MEDIA_INFO_LOADER_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 #include "base/callback.h" 10 #include "base/callback.h"
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after
76 const WebKit::WebURLResponse& redirectResponse); 76 const WebKit::WebURLResponse& redirectResponse);
77 virtual void didSendData( 77 virtual void didSendData(
78 WebKit::WebURLLoader* loader, 78 WebKit::WebURLLoader* loader,
79 unsigned long long bytesSent, 79 unsigned long long bytesSent,
80 unsigned long long totalBytesToBeSent); 80 unsigned long long totalBytesToBeSent);
81 virtual void didReceiveResponse( 81 virtual void didReceiveResponse(
82 WebKit::WebURLLoader* loader, 82 WebKit::WebURLLoader* loader,
83 const WebKit::WebURLResponse& response); 83 const WebKit::WebURLResponse& response);
84 virtual void didDownloadData( 84 virtual void didDownloadData(
85 WebKit::WebURLLoader* loader, 85 WebKit::WebURLLoader* loader,
86 int data_length); 86 int data_length,
87 int encodedDataLength);
87 virtual void didReceiveData( 88 virtual void didReceiveData(
88 WebKit::WebURLLoader* loader, 89 WebKit::WebURLLoader* loader,
89 const char* data, 90 const char* data,
90 int data_length, 91 int data_length,
91 int encoded_data_length); 92 int encoded_data_length);
92 virtual void didReceiveCachedMetadata( 93 virtual void didReceiveCachedMetadata(
93 WebKit::WebURLLoader* loader, 94 WebKit::WebURLLoader* loader,
94 const char* data, int dataLength); 95 const char* data, int dataLength);
95 virtual void didFinishLoading( 96 virtual void didFinishLoading(
96 WebKit::WebURLLoader* loader, 97 WebKit::WebURLLoader* loader,
(...skipping 17 matching lines...) Expand all
114 115
115 ReadyCB ready_cb_; 116 ReadyCB ready_cb_;
116 base::TimeTicks start_time_; 117 base::TimeTicks start_time_;
117 118
118 DISALLOW_COPY_AND_ASSIGN(MediaInfoLoader); 119 DISALLOW_COPY_AND_ASSIGN(MediaInfoLoader);
119 }; 120 };
120 121
121 } // namespace content 122 } // namespace content
122 123
123 #endif // CONTENT_RENDERER_MEDIA_ANDROID_MEDIA_INFO_LOADER_H_ 124 #endif // CONTENT_RENDERER_MEDIA_ANDROID_MEDIA_INFO_LOADER_H_
OLDNEW
« no previous file with comments | « no previous file | content/renderer/media/android/media_info_loader.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698