| OLD | NEW |
| 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include <windows.h> | 5 #include <windows.h> |
| 6 | 6 |
| 7 #include "base/file_util.h" | 7 #include "base/file_util.h" |
| 8 #include "base/logging.h" | |
| 9 #include "base/registry.h" | 8 #include "base/registry.h" |
| 10 #include "base/scoped_ptr.h" | 9 #include "base/scoped_ptr.h" |
| 11 #include "base/string_util.h" | 10 #include "base/string_util.h" |
| 12 #include "chrome/installer/util/set_reg_value_work_item.h" | 11 #include "chrome/installer/util/set_reg_value_work_item.h" |
| 13 #include "chrome/installer/util/work_item.h" | 12 #include "chrome/installer/util/work_item.h" |
| 14 #include "testing/gtest/include/gtest/gtest.h" | 13 #include "testing/gtest/include/gtest/gtest.h" |
| 15 | 14 |
| 16 namespace { | 15 namespace { |
| 17 wchar_t test_root[] = L"TempTemp"; | 16 wchar_t test_root[] = L"TempTemp"; |
| 18 wchar_t data_str_1[] = L"data_111"; | 17 wchar_t data_str_1[] = L"data_111"; |
| (...skipping 199 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 218 std::wstring data(data_str_1); | 217 std::wstring data(data_str_1); |
| 219 scoped_ptr<SetRegValueWorkItem> work_item( | 218 scoped_ptr<SetRegValueWorkItem> work_item( |
| 220 WorkItem::CreateSetRegValueWorkItem(HKEY_CURRENT_USER, parent_key, | 219 WorkItem::CreateSetRegValueWorkItem(HKEY_CURRENT_USER, parent_key, |
| 221 name, data, false)); | 220 name, data, false)); |
| 222 EXPECT_FALSE(work_item->Do()); | 221 EXPECT_FALSE(work_item->Do()); |
| 223 | 222 |
| 224 work_item.reset(WorkItem::CreateSetRegValueWorkItem(HKEY_CURRENT_USER, | 223 work_item.reset(WorkItem::CreateSetRegValueWorkItem(HKEY_CURRENT_USER, |
| 225 parent_key, name, dword1, false)); | 224 parent_key, name, dword1, false)); |
| 226 EXPECT_FALSE(work_item->Do()); | 225 EXPECT_FALSE(work_item->Do()); |
| 227 } | 226 } |
| OLD | NEW |