| 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_APP_CHROME_MAIN_DELEGATE_H_ | 5 #ifndef CHROME_APP_CHROME_MAIN_DELEGATE_H_ |
| 6 #define CHROME_APP_CHROME_MAIN_DELEGATE_H_ | 6 #define CHROME_APP_CHROME_MAIN_DELEGATE_H_ |
| 7 | 7 |
| 8 #include "base/memory/scoped_ptr.h" | 8 #include "base/memory/scoped_ptr.h" |
| 9 #include "chrome/common/chrome_content_client.h" | 9 #include "chrome/common/chrome_content_client.h" |
| 10 #include "content/public/app/content_main_delegate.h" | 10 #include "content/public/app/content_main_delegate.h" |
| (...skipping 24 matching lines...) Expand all Loading... |
| 35 bool ProcessRegistersWithSystemProcess( | 35 bool ProcessRegistersWithSystemProcess( |
| 36 const std::string& process_type) override; | 36 const std::string& process_type) override; |
| 37 bool ShouldSendMachPort(const std::string& process_type) override; | 37 bool ShouldSendMachPort(const std::string& process_type) override; |
| 38 bool DelaySandboxInitialization(const std::string& process_type) override; | 38 bool DelaySandboxInitialization(const std::string& process_type) override; |
| 39 #elif defined(OS_POSIX) && !defined(OS_ANDROID) | 39 #elif defined(OS_POSIX) && !defined(OS_ANDROID) |
| 40 void ZygoteStarting( | 40 void ZygoteStarting( |
| 41 ScopedVector<content::ZygoteForkDelegate>* delegates) override; | 41 ScopedVector<content::ZygoteForkDelegate>* delegates) override; |
| 42 void ZygoteForked() override; | 42 void ZygoteForked() override; |
| 43 #endif | 43 #endif |
| 44 | 44 |
| 45 bool ShouldEnableProfilerRecording() override; |
| 45 content::ContentBrowserClient* CreateContentBrowserClient() override; | 46 content::ContentBrowserClient* CreateContentBrowserClient() override; |
| 46 content::ContentPluginClient* CreateContentPluginClient() override; | 47 content::ContentPluginClient* CreateContentPluginClient() override; |
| 47 content::ContentRendererClient* CreateContentRendererClient() override; | 48 content::ContentRendererClient* CreateContentRendererClient() override; |
| 48 content::ContentUtilityClient* CreateContentUtilityClient() override; | 49 content::ContentUtilityClient* CreateContentUtilityClient() override; |
| 49 | 50 |
| 50 #if defined(OS_MACOSX) | 51 #if defined(OS_MACOSX) |
| 51 void InitMacCrashReporter(const base::CommandLine& command_line, | 52 void InitMacCrashReporter(const base::CommandLine& command_line, |
| 52 const std::string& process_type); | 53 const std::string& process_type); |
| 53 #endif // defined(OS_MACOSX) | 54 #endif // defined(OS_MACOSX) |
| 54 | 55 |
| 55 ChromeContentClient chrome_content_client_; | 56 ChromeContentClient chrome_content_client_; |
| 56 | 57 |
| 57 DISALLOW_COPY_AND_ASSIGN(ChromeMainDelegate); | 58 DISALLOW_COPY_AND_ASSIGN(ChromeMainDelegate); |
| 58 }; | 59 }; |
| 59 | 60 |
| 60 #endif // CHROME_APP_CHROME_MAIN_DELEGATE_H_ | 61 #endif // CHROME_APP_CHROME_MAIN_DELEGATE_H_ |
| OLD | NEW |