Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(155)

Unified Diff: chrome/renderer/localized_error.h

Issue 10830218: Move localized_error from chrome/renderer into chrome/common. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: add comment Created 8 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/renderer/localized_error.h
diff --git a/chrome/renderer/localized_error.h b/chrome/renderer/localized_error.h
deleted file mode 100644
index ad6d4401cbe3e5dab11fafd210f75bd819345450..0000000000000000000000000000000000000000
--- a/chrome/renderer/localized_error.h
+++ /dev/null
@@ -1,62 +0,0 @@
-// Copyright (c) 2011 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_H_
-#define CHROME_RENDERER_LOCALIZED_ERROR_H_
-
-#include <string>
-
-#include "base/basictypes.h"
-#include "base/string16.h"
-
-class GURL;
-
-namespace base {
-class DictionaryValue;
-}
-
-namespace extensions {
-class Extension;
-}
-
-namespace WebKit {
-struct WebURLError;
-}
-
-class LocalizedError {
- public:
- // 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,
- base::DictionaryValue* strings);
-
- // Returns a description of the encountered error.
- static string16 GetErrorDetails(const WebKit::WebURLError& error);
-
- // Returns true if an error page exists for the specified parameters.
- static bool HasStrings(const std::string& error_domain, int error_code);
-
- // 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.
- static void GetFormRepostStrings(const GURL& display_url,
- 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
- // the associated |app| in order to make the error page look like it's more
- // part of the app.
- static void GetAppErrorStrings(const WebKit::WebURLError& error,
- const GURL& display_url,
- const extensions::Extension* app,
- base::DictionaryValue* error_strings);
-
- static const char kHttpErrorDomain[];
-
- private:
- DISALLOW_IMPLICIT_CONSTRUCTORS(LocalizedError);
-};
-
-#endif // CHROME_RENDERER_LOCALIZED_ERROR_H_

Powered by Google App Engine
This is Rietveld 408576698