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

Unified Diff: base/values.cc

Issue 415423002: Remove Create*Value (except CreateNullValue) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 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 | « base/values.h ('k') | chrome/browser/download/download_query.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/values.cc
diff --git a/base/values.cc b/base/values.cc
index f27c09567eee61c55aafa398d9302a7bd8faeeac..5d45ec36c5551b6e72083d1f5f5736d69dd5bebc 100644
--- a/base/values.cc
+++ b/base/values.cc
@@ -89,31 +89,6 @@ Value* Value::CreateNullValue() {
return new Value(TYPE_NULL);
}
-// static
-FundamentalValue* Value::CreateBooleanValue(bool in_value) {
- return new FundamentalValue(in_value);
-}
-
-// static
-FundamentalValue* Value::CreateIntegerValue(int in_value) {
- return new FundamentalValue(in_value);
-}
-
-// static
-FundamentalValue* Value::CreateDoubleValue(double in_value) {
- return new FundamentalValue(in_value);
-}
-
-// static
-StringValue* Value::CreateStringValue(const std::string& in_value) {
- return new StringValue(in_value);
-}
-
-// static
-StringValue* Value::CreateStringValue(const string16& in_value) {
- return new StringValue(in_value);
-}
-
bool Value::GetAsBoolean(bool* out_value) const {
return false;
}
« no previous file with comments | « base/values.h ('k') | chrome/browser/download/download_query.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698