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

Unified Diff: webkit/glue/media/buffered_data_source.h

Issue 5741001: Even more virtual method deinlining. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase (windows) Created 10 years 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
« no previous file with comments | « webkit/appcache/appcache_url_request_job.cc ('k') | webkit/glue/media/buffered_data_source.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/glue/media/buffered_data_source.h
diff --git a/webkit/glue/media/buffered_data_source.h b/webkit/glue/media/buffered_data_source.h
index 12e8280d26265e111507ebfa2a394b54fd31a63c..6ea6f1c9ec52ad566acaaa1828530aeadfb97820 100644
--- a/webkit/glue/media/buffered_data_source.h
+++ b/webkit/glue/media/buffered_data_source.h
@@ -99,21 +99,21 @@ class BufferedResourceLoader :
// Gets the content length in bytes of the instance after this loader has been
// started. If this value is -1, then content length is unknown.
- virtual int64 content_length() { return content_length_; }
+ virtual int64 content_length();
// Gets the original size of the file requested. If this value is -1, then
// the size is unknown.
- virtual int64 instance_size() { return instance_size_; }
+ virtual int64 instance_size();
// Returns true if the response for this loader is a partial response.
// It means a 206 response in HTTP/HTTPS protocol.
- virtual bool partial_response() { return partial_response_; }
+ virtual bool partial_response();
// Returns true if network is currently active.
- virtual bool network_activity() { return !completed_ && !deferred_; }
+ virtual bool network_activity();
// Returns resulting URL.
- virtual const GURL& url() { return url_; }
+ virtual const GURL& url();
// Used to inject a mock used for unittests.
virtual void SetURLLoaderForTest(WebKit::WebURLLoader* mock_loader);
« no previous file with comments | « webkit/appcache/appcache_url_request_job.cc ('k') | webkit/glue/media/buffered_data_source.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698