| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 "base/file_path.h" | 5 #include "base/file_path.h" |
| 6 #include "base/file_util.h" | 6 #include "base/file_util.h" |
| 7 #include "base/memory/scoped_ptr.h" | 7 #include "base/memory/scoped_ptr.h" |
| 8 #include "base/message_loop.h" |
| 8 #include "base/path_service.h" | 9 #include "base/path_service.h" |
| 9 #include "base/scoped_temp_dir.h" | 10 #include "base/scoped_temp_dir.h" |
| 10 #include "base/stl_util.h" | 11 #include "base/stl_util.h" |
| 11 #include "chrome/browser/extensions/app_notification.h" | 12 #include "chrome/browser/extensions/app_notification.h" |
| 12 #include "chrome/browser/extensions/app_notification_storage.h" | 13 #include "chrome/browser/extensions/app_notification_storage.h" |
| 13 #include "chrome/browser/extensions/app_notification_test_util.h" | 14 #include "chrome/browser/extensions/app_notification_test_util.h" |
| 14 #include "chrome/common/extensions/extension_test_util.h" | 15 #include "chrome/common/extensions/extension_test_util.h" |
| 15 #include "content/test/test_browser_thread.h" | 16 #include "content/test/test_browser_thread.h" |
| 16 #include "testing/gtest/include/gtest/gtest.h" | 17 #include "testing/gtest/include/gtest/gtest.h" |
| 17 | 18 |
| (...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 129 util::AddNotifications(&list1, id, 5, "one"); | 130 util::AddNotifications(&list1, id, 5, "one"); |
| 130 util::AddNotifications(&list2, id, 7, "two"); | 131 util::AddNotifications(&list2, id, 7, "two"); |
| 131 | 132 |
| 132 // Put list1 in, then replace with list2 and verify we get list2 back. | 133 // Put list1 in, then replace with list2 and verify we get list2 back. |
| 133 EXPECT_TRUE(storage_->Set(id, list1)); | 134 EXPECT_TRUE(storage_->Set(id, list1)); |
| 134 EXPECT_TRUE(storage_->Set(id, list2)); | 135 EXPECT_TRUE(storage_->Set(id, list2)); |
| 135 AppNotificationList tmp_list; | 136 AppNotificationList tmp_list; |
| 136 EXPECT_TRUE(storage_->Get(id, &tmp_list)); | 137 EXPECT_TRUE(storage_->Get(id, &tmp_list)); |
| 137 util::ExpectListsEqual(list2, tmp_list); | 138 util::ExpectListsEqual(list2, tmp_list); |
| 138 } | 139 } |
| OLD | NEW |