| Index: chrome/browser/browser_process_platform_part_chromeos.cc
|
| diff --git a/chrome/browser/browser_process_platform_part_chromeos.cc b/chrome/browser/browser_process_platform_part_chromeos.cc
|
| index 25f881d2abbf82f9bb999aea7edfdcbe9aefa6ca..11cacb3252976ac24434ba7fce450764e5459c5f 100644
|
| --- a/chrome/browser/browser_process_platform_part_chromeos.cc
|
| +++ b/chrome/browser/browser_process_platform_part_chromeos.cc
|
| @@ -14,14 +14,6 @@ BrowserProcessPlatformPart::BrowserProcessPlatformPart()
|
| BrowserProcessPlatformPart::~BrowserProcessPlatformPart() {
|
| }
|
|
|
| -void BrowserProcessPlatformPart::PlatformSpecificCommandLineProcessing(
|
| - const CommandLine& /* command_line */) {
|
| -}
|
| -
|
| -void BrowserProcessPlatformPart::StartTearDown() {
|
| - profile_helper_.reset();
|
| -}
|
| -
|
| chromeos::OomPriorityManager*
|
| BrowserProcessPlatformPart::oom_priority_manager() {
|
| DCHECK(CalledOnValidThread());
|
| @@ -42,3 +34,7 @@ void BrowserProcessPlatformPart::CreateProfileHelper() {
|
| created_profile_helper_ = true;
|
| profile_helper_.reset(new chromeos::ProfileHelper());
|
| }
|
| +
|
| +void BrowserProcessPlatformPart::StartTearDown() {
|
| + profile_helper_.reset();
|
| +}
|
|
|