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

Side by Side Diff: chrome/browser/sync/glue/bookmark_data_type_controller_unittest.cc

Issue 7616019: Reorganize chrome/test, part #9 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 4 months 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 "testing/gtest/include/gtest/gtest.h" 5 #include "testing/gtest/include/gtest/gtest.h"
6 6
7 #include "base/callback.h" 7 #include "base/callback.h"
8 #include "base/memory/scoped_ptr.h" 8 #include "base/memory/scoped_ptr.h"
9 #include "base/message_loop.h" 9 #include "base/message_loop.h"
10 #include "base/task.h" 10 #include "base/task.h"
11 #include "chrome/browser/bookmarks/bookmark_model.h" 11 #include "chrome/browser/bookmarks/bookmark_model.h"
12 #include "chrome/browser/profiles/profile.h" 12 #include "chrome/browser/profiles/profile.h"
13 #include "chrome/browser/sync/glue/bookmark_data_type_controller.h" 13 #include "chrome/browser/sync/glue/bookmark_data_type_controller.h"
14 #include "chrome/browser/sync/glue/change_processor_mock.h" 14 #include "chrome/browser/sync/glue/change_processor_mock.h"
15 #include "chrome/browser/sync/glue/model_associator_mock.h" 15 #include "chrome/browser/sync/glue/model_associator_mock.h"
16 #include "chrome/browser/sync/profile_sync_factory_mock.h" 16 #include "chrome/browser/sync/profile_sync_factory_mock.h"
17 #include "chrome/browser/sync/profile_sync_service_mock.h" 17 #include "chrome/browser/sync/profile_sync_service_mock.h"
18 #include "chrome/common/chrome_notification_types.h" 18 #include "chrome/common/chrome_notification_types.h"
19 #include "chrome/test/base/profile_mock.h" 19 #include "chrome/test/base/profile_mock.h"
20 #include "chrome/test/testing_browser_process_test.h" 20 #include "chrome/test/base/testing_browser_process_test.h"
21 #include "content/browser/browser_thread.h" 21 #include "content/browser/browser_thread.h"
22 #include "content/common/notification_service.h" 22 #include "content/common/notification_service.h"
23 #include "content/common/notification_source.h" 23 #include "content/common/notification_source.h"
24 #include "testing/gmock/include/gmock/gmock.h" 24 #include "testing/gmock/include/gmock/gmock.h"
25 25
26 using browser_sync::BookmarkDataTypeController; 26 using browser_sync::BookmarkDataTypeController;
27 using browser_sync::ChangeProcessorMock; 27 using browser_sync::ChangeProcessorMock;
28 using browser_sync::DataTypeController; 28 using browser_sync::DataTypeController;
29 using browser_sync::ModelAssociatorMock; 29 using browser_sync::ModelAssociatorMock;
30 using testing::_; 30 using testing::_;
(...skipping 185 matching lines...) Expand 10 before | Expand all | Expand 10 after
216 EXPECT_CALL(service_, OnUnrecoverableError(_,_)). 216 EXPECT_CALL(service_, OnUnrecoverableError(_,_)).
217 WillOnce(InvokeWithoutArgs(bookmark_dtc_.get(), 217 WillOnce(InvokeWithoutArgs(bookmark_dtc_.get(),
218 &BookmarkDataTypeController::Stop)); 218 &BookmarkDataTypeController::Stop));
219 SetStopExpectations(); 219 SetStopExpectations();
220 220
221 EXPECT_CALL(start_callback_, Run(DataTypeController::OK, _)); 221 EXPECT_CALL(start_callback_, Run(DataTypeController::OK, _));
222 bookmark_dtc_->Start(NewCallback(&start_callback_, &StartCallback::Run)); 222 bookmark_dtc_->Start(NewCallback(&start_callback_, &StartCallback::Run));
223 // This should cause bookmark_dtc_->Stop() to be called. 223 // This should cause bookmark_dtc_->Stop() to be called.
224 bookmark_dtc_->OnUnrecoverableError(FROM_HERE, "Test"); 224 bookmark_dtc_->OnUnrecoverableError(FROM_HERE, "Test");
225 } 225 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698