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

Unified Diff: content/public/android/java/src/org/chromium/content/browser/ContentViewCore.java

Issue 11369052: Fix FindBugs warnings (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Added temporary shim to avoid breaking downstream build Created 8 years, 1 month 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 | « chrome/android/java/src/org/chromium/chrome/browser/GoogleLocationSettingsHelperStub.java ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/public/android/java/src/org/chromium/content/browser/ContentViewCore.java
diff --git a/content/public/android/java/src/org/chromium/content/browser/ContentViewCore.java b/content/public/android/java/src/org/chromium/content/browser/ContentViewCore.java
index b087475d21e1503a57638ffd01fd4118623e97f6..f4e98279b3f6d505adec8d4fd87f8e6241415f31 100644
--- a/content/public/android/java/src/org/chromium/content/browser/ContentViewCore.java
+++ b/content/public/android/java/src/org/chromium/content/browser/ContentViewCore.java
@@ -2174,12 +2174,19 @@ public class ContentViewCore implements MotionEventDelegate {
* @param tickTimeMicros The latest vsync tick time in microseconds.
* @param intervalMicros The vsync interval in microseconds.
*/
- public void UpdateVSync(long tickTimeMicros, long intervalMicros) {
+ public void updateVSync(long tickTimeMicros, long intervalMicros) {
if (mNativeContentViewCore != 0) {
nativeUpdateVSyncParameters(mNativeContentViewCore, tickTimeMicros, intervalMicros);
}
}
+ /**
+ * Temporary shim for updateVSync.
+ */
+ public void UpdateVSync(long tickTimeMicros, long intervalMicros) {
+ updateVSync(tickTimeMicros, intervalMicros);
+ }
+
private native int nativeInit(boolean hardwareAccelerated, int webContentsPtr,
int windowAndroidPtr);
« no previous file with comments | « chrome/android/java/src/org/chromium/chrome/browser/GoogleLocationSettingsHelperStub.java ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698