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

Unified Diff: net/disk_cache/net_log_parameters.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 | « net/base/net_log.h ('k') | net/http/http_net_log_params.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/disk_cache/net_log_parameters.h
===================================================================
--- net/disk_cache/net_log_parameters.h (revision 92173)
+++ net/disk_cache/net_log_parameters.h (working copy)
@@ -19,7 +19,7 @@
class EntryCreationParameters : public net::NetLog::EventParameters {
public:
EntryCreationParameters(const std::string& key, bool created);
- virtual Value* ToValue() const;
+ virtual base::Value* ToValue() const;
private:
const std::string key_;
@@ -33,7 +33,7 @@
public:
// For reads, |truncate| must be false.
ReadWriteDataParameters(int index, int offset, int buf_len, bool truncate);
- virtual Value* ToValue() const;
+ virtual base::Value* ToValue() const;
private:
const int index_;
@@ -51,7 +51,7 @@
// code. |bytes_copied| must not be ERR_IO_PENDING, as it's not a valid
// result for an operation.
explicit ReadWriteCompleteParameters(int bytes_copied);
- virtual Value* ToValue() const;
+ virtual base::Value* ToValue() const;
private:
const int bytes_copied_;
@@ -63,7 +63,7 @@
class SparseOperationParameters : public net::NetLog::EventParameters {
public:
SparseOperationParameters(int64 offset, int buff_len);
- virtual Value* ToValue() const;
+ virtual base::Value* ToValue() const;
private:
const int64 offset_;
@@ -75,7 +75,7 @@
class SparseReadWriteParameters : public net::NetLog::EventParameters {
public:
SparseReadWriteParameters(const net::NetLog::Source& source, int child_len);
- virtual Value* ToValue() const;
+ virtual base::Value* ToValue() const;
private:
const net::NetLog::Source source_;
@@ -87,7 +87,7 @@
public:
// |start| is ignored when |result| < 0.
GetAvailableRangeResultParameters(int64 start, int result);
- virtual Value* ToValue() const;
+ virtual base::Value* ToValue() const;
private:
const int64 start_;
« no previous file with comments | « net/base/net_log.h ('k') | net/http/http_net_log_params.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698