使用soui开发的mbc,只支持windows版本
w1146869587
2022-01-24 479b1995ef435713c2cf4f0da8de3a6af6c30922
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
#ifndef _COMMON_CLIENT_APP_H_
#define _COMMON_CLIENT_APP_H_ 
 
#include <vector>
#include "include/cef_app.h"
#include "include/internal/cef_ptr.h"
 
namespace browser {
 
// Base class for customizing process-type-based behavior.
class CCef3ClientApp : public CefApp{
 public:
     CCef3ClientApp();
 
  enum ProcessType {
    BrowserProcess,
    RendererProcess,
    ZygoteProcess,
    OtherProcess,
  };
 
  // Determine the process type based on command-line arguments.
  static ProcessType GetProcessType(CefRefPtr<CefCommandLine> command_line);
 
 protected:
  // Schemes that will be registered with the global cookie manager.
  std::vector<CefString> cookieable_schemes_;
 
 private:
  // Registers custom schemes. Implemented by cefclient in
  // client_app_delegates_common.cc
  static void RegisterCustomSchemes(CefRawPtr<CefSchemeRegistrar> registrar,
                                    std::vector<CefString>& cookiable_schemes);
 
  // CefApp methods.
  void OnRegisterCustomSchemes(
      CefRawPtr<CefSchemeRegistrar> registrar) OVERRIDE;
 
 
 
  DISALLOW_COPY_AND_ASSIGN(CCef3ClientApp);
};
 
}  // namespace browser
 
#endif  // _COMMON_CLIENT_APP_H_