Allow overriding MainDelegate::BasicStartupComplete

This commit is contained in:
Adam Roben 2013-03-28 12:34:49 -04:00
parent fa9a1d7b35
commit 93d9b61215

View file

@ -18,6 +18,10 @@ public:
MainDelegate(); MainDelegate();
~MainDelegate(); ~MainDelegate();
protected:
virtual bool BasicStartupComplete(int* exit_code) OVERRIDE;
virtual void PreSandboxStartup() OVERRIDE;
private: private:
static void InitializeResourceBundle(); static void InitializeResourceBundle();
#if defined(OS_MACOSX) #if defined(OS_MACOSX)
@ -25,9 +29,6 @@ private:
static void OverrideFrameworkBundlePath(); static void OverrideFrameworkBundlePath();
#endif #endif
virtual bool BasicStartupComplete(int* exit_code) OVERRIDE;
virtual void PreSandboxStartup() OVERRIDE;
scoped_ptr<ContentClient> content_client_; scoped_ptr<ContentClient> content_client_;
DISALLOW_COPY_AND_ASSIGN(MainDelegate); DISALLOW_COPY_AND_ASSIGN(MainDelegate);