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

Unified Diff: cc/UnthrottledTextureUploader.h

Issue 10947047: Fix remaining cc files to compile with Clang (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix FakeCCDelayBasedTimeSource Created 8 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « cc/ScrollbarLayerChromium.cpp ('k') | cc/UnthrottledTextureUploader.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/UnthrottledTextureUploader.h
diff --git a/cc/UnthrottledTextureUploader.h b/cc/UnthrottledTextureUploader.h
index 4f97baf6e6fc43444997981e9fb17a5e99e5c361..a44d4ff7552aae70d915106320d4a446b6746e3a 100644
--- a/cc/UnthrottledTextureUploader.h
+++ b/cc/UnthrottledTextureUploader.h
@@ -19,11 +19,11 @@ public:
}
virtual ~UnthrottledTextureUploader() { }
- virtual bool isBusy() OVERRIDE { return false; }
- virtual double estimatedTexturesPerSecond() { return std::numeric_limits<double>::max(); }
+ virtual bool isBusy() OVERRIDE;
+ virtual double estimatedTexturesPerSecond() OVERRIDE;
virtual void beginUploads() OVERRIDE { }
virtual void endUploads() OVERRIDE { }
- virtual void uploadTexture(CCResourceProvider* resourceProvider, Parameters upload) OVERRIDE { upload.texture->updateRect(resourceProvider, upload.sourceRect, upload.destOffset); }
+ virtual void uploadTexture(CCResourceProvider* resourceProvider, Parameters upload) OVERRIDE;
protected:
UnthrottledTextureUploader() { }
« no previous file with comments | « cc/ScrollbarLayerChromium.cpp ('k') | cc/UnthrottledTextureUploader.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698