blob: 156546e79a885c0b0920e526a27f6368ad1666cd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
// Copyright 2013 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "components/precache/core/precache_switches.h"
namespace precache {
namespace switches {
// The URL that provides the PrecacheConfigurationSettings proto.
const char kPrecacheConfigSettingsURL[] = "precache-config-settings-url";
// Precache manifests will be served from URLs with this prefix.
const char kPrecacheManifestURLPrefix[] = "precache-manifest-url-prefix";
} // namespace switches
} // namespace precache
|