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

/external/chromium_org/components/precache/core/
H A Dprecache_switches.h8 namespace precache { namespace
18 } // namespace precache
H A Durl_list_provider.h13 namespace precache { namespace
26 } // namespace precache
H A Dprecache_switches.cc5 #include "components/precache/core/precache_switches.h"
7 namespace precache { namespace
12 const char kEnablePrecache[] = "enable-precache";
15 const char kPrecacheConfigSettingsURL[] = "precache-config-settings-url";
18 const char kPrecacheManifestURLPrefix[] = "precache-manifest-url-prefix";
21 } // namespace precache
H A Dprecache_url_table.h18 namespace precache { namespace
23 // since then. Manages one table { URL (primary key), precache timestamp }.
29 // Initialize the precache URL table for use with the specified database
35 // precache timestamp. Replaces the row if one already exists.
59 } // namespace precache
H A Dprecache_database.h17 #include "components/precache/core/precache_url_table.h"
30 namespace precache { namespace
40 // Initializes the precache database, using the specified database file path.
44 // Deletes precache history from the precache URL table that is more than 60
48 // Report precache-related metrics in response to a URL being fetched, where
53 // Report precache-related metrics in response to a URL being fetched, where
107 } // namespace precache
H A Dprecache_fetcher.h20 namespace precache { namespace
36 // PrecacheFetcher to work. This includes the URL that the precache
37 // configuration settings are fetched from and the prefix of URLs where precache
79 // Starts fetching resources to precache. URLs are fetched sequentially. Can
93 // Called when the precache configuration settings have been fetched.
95 // |starting_urls_| and information from the precache configuration settings.
99 // Called when a precache manifest has been fetched. Builds the list of
125 } // namespace precache
H A Dprecache_url_table.cc5 #include "components/precache/core/precache_url_table.h"
24 namespace precache { namespace
90 } // namespace precache
H A Dprecache_url_table_unittest.cc5 #include "components/precache/core/precache_url_table.h"
15 namespace precache { namespace
116 } // namespace precache
H A Dprecache_database.cc5 #include "components/precache/core/precache_database.h"
18 // The number of days old that an entry in the precache URL table can be before
24 namespace precache { namespace
68 // Delete old precache history that has expired.
93 // Since the precache came from the cache, and there's no entry in the URL
95 // because of user browsing. Thus, this precache had no effect, so ignore
101 // The precache only counts as overhead if it was downloaded over the
132 // Ignore cache hits that precache can't take credit for.
138 // as downloaded non-precache bytes.
227 } // namespace precache
[all...]
H A Dprecache_fetcher.cc5 #include "components/precache/core/precache_fetcher.h"
14 #include "components/precache/core/precache_switches.h"
15 #include "components/precache/core/proto/precache.pb.h"
25 namespace precache { namespace
39 // The precache config settings URL could not be determined, so return an
55 // The precache manifest URL prefix could not be determined, so return an
61 // Construct the URL of the precache manifest for the given starting URL.
143 << "Could not determine the precache config settings URL.";
145 << "Could not determine the precache manifes
[all...]
H A Dprecache_fetcher_unittest.cc5 #include "components/precache/core/precache_fetcher.h"
17 #include "components/precache/core/precache_switches.h"
18 #include "components/precache/core/proto/precache.pb.h"
26 namespace precache { namespace
230 // OnDone to be called on the precache delegate.
244 // If the default precache configuration settings URL is defined, then test that
273 // If the default precache manifest URL prefix is defined, then test that it
310 } // namespace precache
H A Dprecache_database_unittest.cc5 #include "components/precache/core/precache_database.h"
52 namespace precache { namespace
315 precache_url_table()->AddURL(GURL("http://expired-precache.com"), k61DaysAgo);
316 precache_url_table()->AddURL(GURL("http://old-precache.com"), k59DaysAgo);
320 EXPECT_EQ(BuildURLTableMap(GURL("http://old-precache.com"), k59DaysAgo),
391 } // namespace precache
/external/chromium_org/components/precache/content/
H A Dprecache_manager_factory.h16 namespace precache { namespace
39 } // namespace precache
H A Dprecache_manager_factory.cc5 #include "components/precache/content/precache_manager_factory.h"
8 #include "components/precache/content/precache_manager.h"
11 namespace precache { namespace
36 } // namespace precache
H A Dprecache_manager.h16 #include "components/precache/core/precache_fetcher.h"
27 namespace precache { namespace
37 // TODO(sclittle): Delete precache history when browsing history is deleted.
69 // Update precache-related metrics in response to a URL being fetched.
87 // The PrecacheFetcher used to precache resources. Should only be used on the
95 // The PrecacheDatabase for tracking precache metrics. Should only be used on
105 } // namespace precache
H A Dprecache_manager.cc5 #include "components/precache/content/precache_manager.h"
15 #include "components/precache/core/precache_database.h"
16 #include "components/precache/core/precache_switches.h"
17 #include "components/precache/core/url_list_provider.h"
32 namespace precache { namespace
118 // Assume that precache is responsible for all requests made while
120 // TODO(sclittle): Make PrecacheFetcher explicitly mark precache-motivated
172 } // namespace precache
H A Dprecache_manager_unittest.cc5 #include "components/precache/content/precache_manager.h"
21 #include "components/precache/core/precache_switches.h"
22 #include "components/precache/core/url_list_provider.h"
32 namespace precache { namespace
151 // Make the fetch of the precache configuration settings fail. Precaching
216 // been called on the PrecacheFetcher, and the precache config settings have
229 // Even though the response for the precache config settings should not have
323 // The expired precache will be deleted during precaching this time.
332 // A fetch for the same URL as the expired precache was served from the cache,
333 // but it isn't reported as saved bytes because it had expired in the precache
[all...]
/external/chromium_org/chrome/browser/precache/
H A Dmost_visited_urls_provider.h11 #include "components/precache/core/url_list_provider.h"
17 namespace precache { namespace
36 } // namespace precache
H A Dmost_visited_urls_provider.cc5 #include "chrome/browser/precache/most_visited_urls_provider.h"
19 const precache::URLListProvider::GetURLsCallback& callback,
33 namespace precache { namespace
45 } // namespace precache
/external/chromium_org/third_party/qcms/src/
H A Dtransform.c867 * This can lead to us prematurely deleting the precache if threads get unlucky
1071 /* don't precache since we will use the B2A LUT */
1075 /* don't precache since we will use the mBA LUT */
1080 /* don't precache if we do not have the TRC curves */
1174 bool precache = false; local
1190 precache = true;
1208 if (precache) {
1235 if (precache) {
1314 if (precache) {

Completed in 3701 milliseconds