| Index: chrome/test/base/testing_browser_process_platform_part.h
|
| diff --git a/chrome/test/base/testing_browser_process_platform_part.h b/chrome/test/base/testing_browser_process_platform_part.h
|
| index f7114ab3d319a045f592bbc94f30930152d45e65..60d74c7103de20af4ee7231e650ead8aa6b1e613 100644
|
| --- a/chrome/test/base/testing_browser_process_platform_part.h
|
| +++ b/chrome/test/base/testing_browser_process_platform_part.h
|
| @@ -5,17 +5,21 @@
|
| #ifndef CHROME_TEST_BASE_TESTING_BROWSER_PROCESS_PLATFORM_PART_H_
|
| #define CHROME_TEST_BASE_TESTING_BROWSER_PROCESS_PLATFORM_PART_H_
|
|
|
| -#if defined(OS_WIN) && defined(USE_AURA)
|
| -#include "chrome/browser/browser_process_platform_part_aurawin.h"
|
| -#else
|
| #include "chrome/browser/browser_process_platform_part.h"
|
| -#endif
|
|
|
| +// A TestingBrowserProcessPlatformPart is essentially a
|
| +// BrowserProcessPlatformPart except it doesn't have an OomPriorityManager on
|
| +// Chrome OS.
|
| class TestingBrowserProcessPlatformPart : public BrowserProcessPlatformPart {
|
| public:
|
| TestingBrowserProcessPlatformPart();
|
| virtual ~TestingBrowserProcessPlatformPart();
|
|
|
| +#if defined(OS_CHROMEOS)
|
| + // Overridden from BrowserProcessPlatformPart:
|
| + virtual chromeos::OomPriorityManager* oom_priority_manager() OVERRIDE;
|
| +#endif
|
| +
|
| private:
|
| DISALLOW_COPY_AND_ASSIGN(TestingBrowserProcessPlatformPart);
|
| };
|
|
|