Searched defs:INVALID_COLOR (Results 1 - 1 of 1) sorted by relevance

/external/chromium_org/android_webview/java/src/org/chromium/android_webview/
H A DAwContentsClient.java38 // Last background color reported from the renderer. Holds the sentinal value INVALID_COLOR
40 private int mCachedRendererBackgroundColor = INVALID_COLOR;
42 private static final int INVALID_COLOR = 0; field in class:AwContentsClient
63 return mCachedRendererBackgroundColor != INVALID_COLOR;
67 // Avoid storing the sentinal INVALID_COLOR (note that both 0 and 1 are both
69 mCachedRendererBackgroundColor = color == INVALID_COLOR ? 1 : color;

Completed in 49 milliseconds