/external/chromium_org/components/search_provider_logos/ |
logo_common.cc | 17 Logo::Logo() {} 18 Logo::~Logo() {}
|
logo_common.h | 17 // The maximum number of milliseconds that a logo can be cached. 26 // The URL to load when the logo is clicked. 28 // The accessibility text for the logo. 30 // The mime type of the logo image. 35 // The URL from which the logo was downloaded (without the fingerprint param). 37 // A fingerprint (i.e. hash) identifying the logo. Used when revalidating the 38 // logo with the server. 40 // Whether the logo can be shown optimistically after it's expired while a 41 // fresh logo is being downloaded. 43 // When the logo expires. After this time, the logo will not be used and wil [all...] |
logo_tracker_unittest.cc | 74 EncodedLogo EncodeLogo(const Logo& logo) { 76 encoded_logo.encoded_image = EncodeBitmapAsPNG(logo.image); 77 encoded_logo.metadata = logo.metadata; 81 Logo DecodeLogo(const EncodedLogo& encoded_logo) { 82 Logo logo; local 83 logo.image = gfx::Image::CreateFrom1xPNGBytes( 86 logo.metadata = encoded_logo.metadata; 87 return logo; 91 Logo logo; local 105 Logo logo; local 397 Logo logo = GetSampleLogo(logo_url_, test_clock_->Now()); local 423 Logo logo; local 522 Logo logo = GetSampleLogo(logo_url_, test_clock_->Now()); local 537 Logo logo = GetSampleLogo(logo_url_, test_clock_->Now()); local 665 Logo logo = GetSampleLogo(logo_url_, test_clock_->Now()); local [all...] |
logo_tracker.h | 31 // Receives updates when the search provider's logo is available. 36 // Called when the cached logo is available and possibly when a freshly 37 // downloaded logo is available. |logo| will be NULL if no logo is available. 38 // |from_cache| indicates whether the logo was loaded from the cache. 40 // If the fresh logo is the same as the cached logo, this will not be called 42 virtual void OnLogoAvailable(const Logo* logo, bool from_cache) = 0 [all...] |
logo_tracker.cc | 26 // Returns whether the metadata for the cached logo indicates that the logo is 42 // Reads the logo from the cache and returns it. Returns NULL if the cache is 43 // empty, corrupt, expired, or doesn't apply to the current logo URL. 172 cached_logo_.reset(new Logo()); 177 Logo* logo = cached_logo_.get(); local 178 FOR_EACH_OBSERVER(LogoObserver, logo_observers_, OnLogoAvailable(logo, true)); 182 void LogoTracker::SetCachedLogo(scoped_ptr<EncodedLogo> logo) { 187 base::Owned(logo.release()))) 249 scoped_ptr<Logo> logo; local [all...] |
/external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/ |
LogoBridge.java | 13 * Provides access to the search provider's logo via the C++ LogoService. 18 * A logo for a search provider (e.g. the Yahoo! logo or Google doodle). 20 public static class Logo { 22 * The logo image. Non-null. 27 * The URL to navigate to when the user clicks on the logo. May be null. 32 * The accessibility text describing the logo. May be null. 36 public Logo(Bitmap image, String onClickUrl, String altText) { 44 * Observer for receiving the logo when it's available. 48 * Called when the cached or fresh logo is available. This may be called up to two times [all...] |
/external/chromium_org/chrome/browser/android/ |
logo_bridge.cc | 26 // Converts a C++ Logo to a Java Logo. 29 const search_provider_logos::Logo* logo) { 30 if (!logo) 33 ScopedJavaLocalRef<jobject> j_bitmap = gfx::ConvertToJavaBitmap(&logo->image); 36 if (!logo->metadata.on_click_url.empty()) 37 j_on_click_url = ConvertUTF8ToJavaString(env, logo->metadata.on_click_url); 40 if (!logo->metadata.alt_text.empty()) 41 j_alt_text = ConvertUTF8ToJavaString(env, logo->metadata.alt_text) [all...] |
logo_service.cc | 21 using search_provider_logos::Logo; 28 const char kCachedLogoDirectory[] = "Search Logo";
|
/cts/tools/vm-tests-tf/lib/ |
junit.jar | |
/external/dexmaker/lib/ |
junit.jar | |
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.junit_3.8.2.v3_8_2_v20100427-1100/ |
junit.jar | |