HomeSort by relevance Sort by last modified time
    Searched defs:CreateSolidBackground (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/ui/views/
background.h 45 static Background* CreateSolidBackground(SkColor color);
48 static Background* CreateSolidBackground(int r, int g, int b) {
49 return CreateSolidBackground(SkColorSetRGB(r, g, b));
53 static Background* CreateSolidBackground(int r, int g, int b, int a) {
54 return CreateSolidBackground(SkColorSetARGB(a, r, g, b));
background.cc 90 Background* Background::CreateSolidBackground(SkColor color) {
98 return CreateSolidBackground(SK_ColorWHITE);

Completed in 40 milliseconds