summaryrefslogtreecommitdiffstats
path: root/base/values.cc
diff options
context:
space:
mode:
authorgab@chromium.org <gab@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-11-26 23:01:23 +0000
committergab@chromium.org <gab@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-11-26 23:01:23 +0000
commit0f22e06f5dda0026f69d3a6962265dfd4e7be72e (patch)
treeb7ed2cc1a0a04320ccd9621d6e17869057b3778d /base/values.cc
parent0b9697908851694b15c5efb94c7bd39a960f5fd3 (diff)
downloadchromium_src-0f22e06f5dda0026f69d3a6962265dfd4e7be72e.zip
chromium_src-0f22e06f5dda0026f69d3a6962265dfd4e7be72e.tar.gz
chromium_src-0f22e06f5dda0026f69d3a6962265dfd4e7be72e.tar.bz2
Remove commented out logs in base/values.cc
I believe those were unintentionally added in patch set 6 of https://chromiumcodereview.appspot.com/14699002 NOTRY=True Review URL: https://codereview.chromium.org/89463002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@237428 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/values.cc')
-rw-r--r--base/values.cc3
1 files changed, 0 insertions, 3 deletions
diff --git a/base/values.cc b/base/values.cc
index 2d3984e..5196cec 100644
--- a/base/values.cc
+++ b/base/values.cc
@@ -465,10 +465,8 @@ void DictionaryValue::SetStringWithoutPathExpansion(
bool DictionaryValue::Get(
const std::string& path, const Value** out_value) const {
DCHECK(IsStringUTF8(path));
-// LOG(WARNING) << "\n1\n";
std::string current_path(path);
const DictionaryValue* current_dictionary = this;
-// LOG(WARNING) << "\n2\n";
for (size_t delimiter_position = current_path.find('.');
delimiter_position != std::string::npos;
delimiter_position = current_path.find('.')) {
@@ -480,7 +478,6 @@ bool DictionaryValue::Get(
current_dictionary = child_dictionary;
current_path.erase(0, delimiter_position + 1);
}
-// LOG(WARNING) << "\n3\n";
return current_dictionary->GetWithoutPathExpansion(current_path, out_value);
}