| Index: components/history/core/test/history_service_test_util.cc | 
| diff --git a/components/history/core/test/history_service_test_util.cc b/components/history/core/test/history_service_test_util.cc | 
| index b03c8b832b1dba0076742941cf84cb032a5e4d97..25eaab4f8a0e2a3ae58a6a64e27abb66b90b7a2b 100644 | 
| --- a/components/history/core/test/history_service_test_util.cc | 
| +++ b/components/history/core/test/history_service_test_util.cc | 
| @@ -41,13 +41,10 @@ class QuitTask : public history::HistoryDBTask { | 
| namespace history { | 
|  | 
| scoped_ptr<HistoryService> CreateHistoryService( | 
| -    const base::FilePath& history_dir, | 
| -    const std::string& accept_languages, | 
| -    bool create_db) { | 
| +    const base::FilePath& history_dir, bool create_db) { | 
| scoped_ptr<HistoryService> history_service(new HistoryService()); | 
| if (!history_service->Init( | 
| -          !create_db, accept_languages, | 
| -          history::TestHistoryDatabaseParamsForPath(history_dir))) { | 
| +          !create_db, history::TestHistoryDatabaseParamsForPath(history_dir))) { | 
| return nullptr; | 
| } | 
|  | 
|  |