Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(473)

Side by Side Diff: chrome/browser/extensions/app_notification_storage_unittest.cc

Issue 8437002: Move BrowserThread to content namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: A few updates. Created 9 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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/path_service.h" 8 #include "base/path_service.h"
9 #include "base/scoped_temp_dir.h" 9 #include "base/scoped_temp_dir.h"
10 #include "base/stl_util.h" 10 #include "base/stl_util.h"
11 #include "chrome/browser/extensions/app_notification.h" 11 #include "chrome/browser/extensions/app_notification.h"
12 #include "chrome/browser/extensions/app_notification_storage.h" 12 #include "chrome/browser/extensions/app_notification_storage.h"
13 #include "chrome/browser/extensions/app_notification_test_util.h" 13 #include "chrome/browser/extensions/app_notification_test_util.h"
14 #include "chrome/common/extensions/extension_test_util.h" 14 #include "chrome/common/extensions/extension_test_util.h"
15 #include "content/test/test_browser_thread.h" 15 #include "content/test/test_browser_thread.h"
16 #include "testing/gtest/include/gtest/gtest.h" 16 #include "testing/gtest/include/gtest/gtest.h"
17 17
18 using content::BrowserThread;
19
18 namespace util = app_notification_test_util; 20 namespace util = app_notification_test_util;
19 21
20 class AppNotificationStorageTest : public testing::Test { 22 class AppNotificationStorageTest : public testing::Test {
21 public: 23 public:
22 AppNotificationStorageTest() : 24 AppNotificationStorageTest() :
23 file_thread_(BrowserThread::FILE, &message_loop_) {} 25 file_thread_(BrowserThread::FILE, &message_loop_) {}
24 virtual ~AppNotificationStorageTest() {} 26 virtual ~AppNotificationStorageTest() {}
25 27
26 virtual void SetUp() OVERRIDE { 28 virtual void SetUp() OVERRIDE {
27 ASSERT_TRUE(dir_.CreateUniqueTempDir()); 29 ASSERT_TRUE(dir_.CreateUniqueTempDir());
(...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after
127 util::AddNotifications(&list1, id, 5, "one"); 129 util::AddNotifications(&list1, id, 5, "one");
128 util::AddNotifications(&list2, id, 7, "two"); 130 util::AddNotifications(&list2, id, 7, "two");
129 131
130 // Put list1 in, then replace with list2 and verify we get list2 back. 132 // Put list1 in, then replace with list2 and verify we get list2 back.
131 EXPECT_TRUE(storage_->Set(id, list1)); 133 EXPECT_TRUE(storage_->Set(id, list1));
132 EXPECT_TRUE(storage_->Set(id, list2)); 134 EXPECT_TRUE(storage_->Set(id, list2));
133 AppNotificationList tmp_list; 135 AppNotificationList tmp_list;
134 EXPECT_TRUE(storage_->Get(id, &tmp_list)); 136 EXPECT_TRUE(storage_->Get(id, &tmp_list));
135 util::ExpectListsEqual(list2, tmp_list); 137 util::ExpectListsEqual(list2, tmp_list);
136 } 138 }
OLDNEW
« no previous file with comments | « chrome/browser/extensions/app_notification_storage.cc ('k') | chrome/browser/extensions/app_notify_channel_setup.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698