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

Unified Diff: chrome/renderer/localized_error.h

Issue 7259019: Move base/values.h into the base namespace. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 5 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
« no previous file with comments | « chrome/renderer/extensions/extension_helper.h ('k') | chrome/renderer/print_web_view_helper.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/renderer/localized_error.h
===================================================================
--- chrome/renderer/localized_error.h (revision 92173)
+++ 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[];
« no previous file with comments | « chrome/renderer/extensions/extension_helper.h ('k') | chrome/renderer/print_web_view_helper.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698