Allow overriding MainDelegate::BasicStartupComplete
This commit is contained in:
parent
fa9a1d7b35
commit
93d9b61215
1 changed files with 4 additions and 3 deletions
|
@ -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);
|
||||||
|
|
Loading…
Reference in a new issue