| Index: chrome/renderer/localized_error.h
|
| ===================================================================
|
| --- chrome/renderer/localized_error.h (revision 91508)
|
| +++ chrome/renderer/localized_error.h (working copy)
|
| @@ -10,10 +10,13 @@
|
|
|
| #include "base/basictypes.h"
|
|
|
| -class DictionaryValue;
|
| class Extension;
|
| class GURL;
|
|
|
| +namespace base {
|
| +class DictionaryValue;
|
| +}
|
| +
|
| namespace WebKit {
|
| struct WebURLError;
|
| }
|
| @@ -23,7 +26,7 @@
|
| // Fills |error_strings| with values to be used to build an error page used
|
| // on HTTP errors, like 404 or connection reset.
|
| static void GetStrings(const WebKit::WebURLError& error,
|
| - DictionaryValue* strings);
|
| + base::DictionaryValue* strings);
|
|
|
| // Returns true if an error page exists for the specified parameters.
|
| static bool HasStrings(const std::string& error_domain, int error_code);
|
| @@ -33,7 +36,7 @@
|
| // repost "error page" has no real error associated with it, and doesn't have
|
| // enough strings localized to meaningfully fill the net error template.
|
| static void GetFormRepostStrings(const GURL& display_url,
|
| - DictionaryValue* error_strings);
|
| + base::DictionaryValue* error_strings);
|
|
|
| // Fills |error_strings| with values to be used to build an error page used
|
| // on HTTP errors, like 404 or connection reset, but using information from
|
| @@ -42,7 +45,7 @@
|
| static void GetAppErrorStrings(const WebKit::WebURLError& error,
|
| const GURL& display_url,
|
| const Extension* app,
|
| - DictionaryValue* error_strings);
|
| + base::DictionaryValue* error_strings);
|
|
|
| static const char kHttpErrorDomain[];
|
|
|
|
|