| 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 #ifndef CHROME_BROWSER_EXTENSIONS_EXTENSION_SERVICE_UNITTEST_H_ | 5 #ifndef CHROME_BROWSER_EXTENSIONS_EXTENSION_SERVICE_UNITTEST_H_ |
| 6 #define CHROME_BROWSER_EXTENSIONS_EXTENSION_SERVICE_UNITTEST_H_ | 6 #define CHROME_BROWSER_EXTENSIONS_EXTENSION_SERVICE_UNITTEST_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include "base/file_path.h" | 9 #include "base/file_path.h" |
| 10 #include "base/memory/ref_counted.h" | 10 #include "base/memory/ref_counted.h" |
| 11 #include "base/memory/scoped_ptr.h" | 11 #include "base/memory/scoped_ptr.h" |
| 12 #include "base/message_loop.h" | 12 #include "base/message_loop.h" |
| 13 #include "base/scoped_temp_dir.h" | 13 #include "base/scoped_temp_dir.h" |
| 14 #include "chrome/browser/extensions/extension_service.h" | 14 #include "chrome/browser/extensions/extension_service.h" |
| 15 #include "chrome/test/testing_browser_process_test.h" | 15 #include "chrome/test/base/testing_browser_process_test.h" |
| 16 #include "content/browser/browser_thread.h" | 16 #include "content/browser/browser_thread.h" |
| 17 #include "testing/gtest/include/gtest/gtest.h" | 17 #include "testing/gtest/include/gtest/gtest.h" |
| 18 | 18 |
| 19 class ExtensionServiceTestBase : public TestingBrowserProcessTest { | 19 class ExtensionServiceTestBase : public TestingBrowserProcessTest { |
| 20 public: | 20 public: |
| 21 ExtensionServiceTestBase(); | 21 ExtensionServiceTestBase(); |
| 22 virtual ~ExtensionServiceTestBase(); | 22 virtual ~ExtensionServiceTestBase(); |
| 23 | 23 |
| 24 void InitializeExtensionService( | 24 void InitializeExtensionService( |
| 25 const FilePath& pref_file, const FilePath& extensions_install_dir, | 25 const FilePath& pref_file, const FilePath& extensions_install_dir, |
| (...skipping 26 matching lines...) Expand all Loading... |
| 52 size_t total_successes_; | 52 size_t total_successes_; |
| 53 MessageLoop loop_; | 53 MessageLoop loop_; |
| 54 BrowserThread ui_thread_; | 54 BrowserThread ui_thread_; |
| 55 BrowserThread db_thread_; | 55 BrowserThread db_thread_; |
| 56 BrowserThread webkit_thread_; | 56 BrowserThread webkit_thread_; |
| 57 BrowserThread file_thread_; | 57 BrowserThread file_thread_; |
| 58 BrowserThread io_thread_; | 58 BrowserThread io_thread_; |
| 59 }; | 59 }; |
| 60 | 60 |
| 61 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_SERVICE_UNITTEST_H_ | 61 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_SERVICE_UNITTEST_H_ |
| OLD | NEW |