File tree Expand file tree Collapse file tree 2 files changed +2
-8
lines changed
Expand file tree Collapse file tree 2 files changed +2
-8
lines changed Original file line number Diff line number Diff line change 1212#include " base/logging.h"
1313#include " base/string_util.h"
1414#include " base/utf_string_conversions.h"
15- # include < iostream >
15+
1616namespace {
1717
1818// Make a deep copy of |node|, but don't include empty lists or dictionaries
@@ -378,18 +378,13 @@ bool DictionaryValue::HasKey(const std::string& key) const {
378378}
379379
380380void DictionaryValue::Clear () {
381- std::cout << " *********** DictionaryValue::Clear()\n " ;
382381 ValueMap::iterator dict_iterator = dictionary_.begin ();
383382 while (dict_iterator != dictionary_.end ()) {
384- if (dict_iterator->first == " message" ) {
385- std::cout<< " ******** " <<dict_iterator->first <<" = " << dict_iterator->second << " = { " << *(dict_iterator->second )<< " }" ;
386- } else
387- std::cout<<" ******** " <<dict_iterator->first <<" = " << dict_iterator->second <<std::endl;
383+
388384 delete dict_iterator->second ;
389385 ++dict_iterator;
390386 }
391387
392- std::cout << " *********** finish: DictionaryValue::Clear()\n\n " ;
393388 dictionary_.clear ();
394389}
395390
Original file line number Diff line number Diff line change @@ -277,7 +277,6 @@ const ListValue* InMemoryLog::entries_list() const {
277277
278278void InMemoryLog::clear_entries_list () {
279279 base::AutoLock auto_lock (entries_lock_);
280- std::cout<<" ********** InMemoryLog::clear_entries_list()\n " ;
281280 entries_list_.Clear ();
282281}
283282
You can’t perform that action at this time.
0 commit comments