Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(218)

Side by Side Diff: extensions/shell/app/shell_main_delegate.h

Issue 586583002: Run app_shell on Windows. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: jamescook Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « build/all.gyp ('k') | extensions/shell/app/shell_main_delegate.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 EXTENSIONS_SHELL_APP_SHELL_MAIN_DELEGATE_H_ 5 #ifndef EXTENSIONS_SHELL_APP_SHELL_MAIN_DELEGATE_H_
6 #define EXTENSIONS_SHELL_APP_SHELL_MAIN_DELEGATE_H_ 6 #define EXTENSIONS_SHELL_APP_SHELL_MAIN_DELEGATE_H_
7 7
8 #include "base/compiler_specific.h" 8 #include "base/compiler_specific.h"
9 #include "base/memory/scoped_ptr.h" 9 #include "base/memory/scoped_ptr.h"
10 #include "content/public/app/content_main_delegate.h" 10 #include "content/public/app/content_main_delegate.h"
(...skipping 12 matching lines...) Expand all
23 public: 23 public:
24 ShellMainDelegate(); 24 ShellMainDelegate();
25 virtual ~ShellMainDelegate(); 25 virtual ~ShellMainDelegate();
26 26
27 // ContentMainDelegate implementation: 27 // ContentMainDelegate implementation:
28 virtual bool BasicStartupComplete(int* exit_code) OVERRIDE; 28 virtual bool BasicStartupComplete(int* exit_code) OVERRIDE;
29 virtual void PreSandboxStartup() OVERRIDE; 29 virtual void PreSandboxStartup() OVERRIDE;
30 virtual content::ContentBrowserClient* CreateContentBrowserClient() OVERRIDE; 30 virtual content::ContentBrowserClient* CreateContentBrowserClient() OVERRIDE;
31 virtual content::ContentRendererClient* CreateContentRendererClient() 31 virtual content::ContentRendererClient* CreateContentRendererClient()
32 OVERRIDE; 32 OVERRIDE;
33 #if defined(OS_POSIX) && !defined(OS_MACOSX) && !defined(OS_ANDROID)
33 virtual void ZygoteStarting( 34 virtual void ZygoteStarting(
34 ScopedVector<content::ZygoteForkDelegate>* delegates) OVERRIDE; 35 ScopedVector<content::ZygoteForkDelegate>* delegates) OVERRIDE;
36 #endif
35 37
36 protected: 38 protected:
37 // The created object is owned by this object. 39 // The created object is owned by this object.
38 virtual content::ContentClient* CreateContentClient(); 40 virtual content::ContentClient* CreateContentClient();
39 virtual content::ContentBrowserClient* CreateShellContentBrowserClient(); 41 virtual content::ContentBrowserClient* CreateShellContentBrowserClient();
40 virtual content::ContentRendererClient* CreateShellContentRendererClient(); 42 virtual content::ContentRendererClient* CreateShellContentRendererClient();
41 43
42 // Initializes the resource bundle and resources.pak. 44 // Initializes the resource bundle and resources.pak.
43 virtual void InitializeResourceBundle(); 45 virtual void InitializeResourceBundle();
44 46
45 private: 47 private:
46 // |process_type| is zygote, renderer, utility, etc. Returns true if the 48 // |process_type| is zygote, renderer, utility, etc. Returns true if the
47 // process needs data from resources.pak. 49 // process needs data from resources.pak.
48 static bool ProcessNeedsResourceBundle(const std::string& process_type); 50 static bool ProcessNeedsResourceBundle(const std::string& process_type);
49 51
50 scoped_ptr<content::ContentClient> content_client_; 52 scoped_ptr<content::ContentClient> content_client_;
51 scoped_ptr<content::ContentBrowserClient> browser_client_; 53 scoped_ptr<content::ContentBrowserClient> browser_client_;
52 scoped_ptr<content::ContentRendererClient> renderer_client_; 54 scoped_ptr<content::ContentRendererClient> renderer_client_;
53 55
54 DISALLOW_COPY_AND_ASSIGN(ShellMainDelegate); 56 DISALLOW_COPY_AND_ASSIGN(ShellMainDelegate);
55 }; 57 };
56 58
57 } // namespace extensions 59 } // namespace extensions
58 60
59 #endif // EXTENSIONS_SHELL_APP_SHELL_MAIN_DELEGATE_H_ 61 #endif // EXTENSIONS_SHELL_APP_SHELL_MAIN_DELEGATE_H_
OLDNEW
« no previous file with comments | « build/all.gyp ('k') | extensions/shell/app/shell_main_delegate.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698