blob: 697f2ebae54a6564a661f1ff29956943169a32b0 [file] [log] [blame]
// Copyright (c) 2012 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 "content/common/savable_url_schemes.h"
#include <stdlib.h>
#include "content/public/common/url_constants.h"
namespace content {
namespace {
const char* const kDefaultSavableSchemes[] = {
kHttpScheme,
kHttpsScheme,
chrome::kFileScheme,
chrome::kFileSystemScheme,
chrome::kFtpScheme,
chrome::kChromeDevToolsScheme,
chrome::kChromeUIScheme,
chrome::kDataScheme,
NULL
};
const char* const* g_savable_schemes = kDefaultSavableSchemes;
} // namespace
const char* const* GetSavableSchemesInternal() {
return g_savable_schemes;
}
void SetSavableSchemes(const char* const* savable_schemes) {
g_savable_schemes = savable_schemes;
}
} // namespace content