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

Unified Diff: chrome/renderer/safe_browsing/feature_extractor_clock.h

Issue 5841002: Finish deinlining virtual methods. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: revert parts of the balloon modifications 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
Index: chrome/renderer/safe_browsing/feature_extractor_clock.h
diff --git a/chrome/renderer/safe_browsing/feature_extractor_clock.h b/chrome/renderer/safe_browsing/feature_extractor_clock.h
index 0f5cd3759811110db8bb7098fa1968487d271b66..54bff0631e434cbda47df452d871b46db696f9d3 100644
--- a/chrome/renderer/safe_browsing/feature_extractor_clock.h
+++ b/chrome/renderer/safe_browsing/feature_extractor_clock.h
@@ -15,10 +15,10 @@ namespace safe_browsing {
class FeatureExtractorClock {
public:
FeatureExtractorClock() {}
- virtual ~FeatureExtractorClock() {}
+ virtual ~FeatureExtractorClock();
// Returns the current time. May be mocked for testing.
- virtual base::TimeTicks Now() { return base::TimeTicks::Now(); }
+ virtual base::TimeTicks Now();
private:
DISALLOW_COPY_AND_ASSIGN(FeatureExtractorClock);

Powered by Google App Engine
This is Rietveld 408576698