summaryrefslogtreecommitdiffstats
path: root/chrome/renderer/localized_error.h
blob: b5024a738f4fc95f1dde9ad51fdbd6bab624161d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// Copyright (c) 2006-2008 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.

#ifndef CHROME_RENDERER_LOCALIZED_ERROR_VALUES_H__
#define CHROME_RENDERER_LOCALIZED_ERROR_VALUES_H__

class DictionaryValue;
class WebError;
class GURL;

void GetLocalizedErrorValues(const WebError& error,
                             DictionaryValue* error_strings);

// Fills |error_strings| with values to be used to build an error page which
// warns against reposting form data. This is special cased because the form
// repost "error page" has no real error associated with it, and doesn't have
// enough strings localized to meaningfully fill the net error template.
void GetFormRepostErrorValues(const GURL& display_url,
                              DictionaryValue* error_strings);

#endif  // CHROME_RENDERER_LOCALIZED_ERROR_VALUES_H__