| Index: chrome/common/mac/mock_launchd.h
|
| diff --git a/chrome/common/mac/mock_launchd.h b/chrome/common/mac/mock_launchd.h
|
| index 33e24d9baedee32957b970c1d8258534578b99b8..ba82009838b87fca0f2a9612201374f7cdb7f695 100644
|
| --- a/chrome/common/mac/mock_launchd.h
|
| +++ b/chrome/common/mac/mock_launchd.h
|
| @@ -30,28 +30,24 @@ class MockLaunchd : public Launchd {
|
|
|
| MockLaunchd(const base::FilePath& file, base::MessageLoop* loop,
|
| bool create_socket, bool as_service);
|
| - virtual ~MockLaunchd();
|
| + ~MockLaunchd() override;
|
|
|
| - virtual CFDictionaryRef CopyExports() override;
|
| - virtual CFDictionaryRef CopyJobDictionary(CFStringRef label) override;
|
| - virtual CFDictionaryRef CopyDictionaryByCheckingIn(CFErrorRef* error)
|
| - override;
|
| - virtual bool RemoveJob(CFStringRef label, CFErrorRef* error) override;
|
| - virtual bool RestartJob(Domain domain,
|
| - Type type,
|
| - CFStringRef name,
|
| - CFStringRef session_type) override;
|
| - virtual CFMutableDictionaryRef CreatePlistFromFile(
|
| - Domain domain,
|
| - Type type,
|
| - CFStringRef name) override;
|
| - virtual bool WritePlistToFile(Domain domain,
|
| - Type type,
|
| - CFStringRef name,
|
| - CFDictionaryRef dict) override;
|
| - virtual bool DeletePlist(Domain domain,
|
| - Type type,
|
| - CFStringRef name) override;
|
| + CFDictionaryRef CopyExports() override;
|
| + CFDictionaryRef CopyJobDictionary(CFStringRef label) override;
|
| + CFDictionaryRef CopyDictionaryByCheckingIn(CFErrorRef* error) override;
|
| + bool RemoveJob(CFStringRef label, CFErrorRef* error) override;
|
| + bool RestartJob(Domain domain,
|
| + Type type,
|
| + CFStringRef name,
|
| + CFStringRef session_type) override;
|
| + CFMutableDictionaryRef CreatePlistFromFile(Domain domain,
|
| + Type type,
|
| + CFStringRef name) override;
|
| + bool WritePlistToFile(Domain domain,
|
| + Type type,
|
| + CFStringRef name,
|
| + CFDictionaryRef dict) override;
|
| + bool DeletePlist(Domain domain, Type type, CFStringRef name) override;
|
|
|
| void SignalReady();
|
|
|
|
|