| Index: chrome/browser/chromeos/input_method/virtual_keyboard_selector_unittest.cc
|
| diff --git a/chrome/browser/chromeos/input_method/virtual_keyboard_selector_unittest.cc b/chrome/browser/chromeos/input_method/virtual_keyboard_selector_unittest.cc
|
| index 3734a7e57327b4f7cce26f3b8e438faa66d544e8..f3c9e5aca516f2199d3f97de20c99defcc2935f2 100644
|
| --- a/chrome/browser/chromeos/input_method/virtual_keyboard_selector_unittest.cc
|
| +++ b/chrome/browser/chromeos/input_method/virtual_keyboard_selector_unittest.cc
|
| @@ -27,7 +27,7 @@ template <size_t L> bool CheckUrls(LayoutToKeyboard::const_iterator start,
|
| std::set<GURL> expected_url_set;
|
| for (size_t i = 0; i < L; ++i) {
|
| if (!expected_url_set.insert(GURL(urls[i])).second) {
|
| - LOG(ERROR) << "Duplicated URL: " << urls[i];
|
| + DVLOG(1) << "Duplicated URL: " << urls[i];
|
| return false;
|
| }
|
| }
|
| @@ -35,7 +35,7 @@ template <size_t L> bool CheckUrls(LayoutToKeyboard::const_iterator start,
|
| std::set<GURL> actual_url_set;
|
| for (LayoutToKeyboard::const_iterator iter = start; iter != end; ++iter) {
|
| if (!actual_url_set.insert(iter->second->url()).second) {
|
| - LOG(ERROR) << "Duplicated URL: " << iter->second->url().spec();
|
| + DVLOG(1) << "Duplicated URL: " << iter->second->url().spec();
|
| return false;
|
| }
|
| }
|
|
|