Merge "fix: use EINA_* booleans instread of TRUE/FALSE" into tizen
[platform/framework/web/wrt.git] / src / view / webkit / injected-bundle / wrt-injected-bundle.h
index 223815c..fc2b774 100644 (file)
@@ -40,6 +40,7 @@ WK_EXPORT void WKBundleInitialize(WKBundleRef bundle, WKTypeRef);
 
 namespace InjectedBundle {
 class DecryptionSupport;
+class ViewmodesSupport;
 }
 
 class Bundle
@@ -81,11 +82,11 @@ class Bundle
     std::string m_theme;
     std::set<JSGlobalContextRef> m_loadedContext;
     JSGlobalContextRef m_willRemoveContext;
-    WrtDB::WidgetType m_widgetType;
     WrtDB::WidgetSecurityModelVersion m_securityModelVersion;
     bool m_initialized;
 
     std::unique_ptr<InjectedBundle::DecryptionSupport> m_decryptionSupport;
+    std::unique_ptr<InjectedBundle::ViewmodesSupport> m_viewmodesSupport;
 
     // WKBundlePageResourceLoadClient callback
     static WKURLRequestRef willSendRequestForFrameCallback(
@@ -181,11 +182,6 @@ class Bundle
                           std::string & argEncodedBundle,
                           std::string & argTheme);
 
-
-#ifdef MULTIPROCESS_SERVICE_SUPPORT_INLINE
-    void sendWebProcessPid();
-#endif
-
 #ifdef CORS_WHITELISTING_ENABLED
     void bypassCORSforWARPAccessList(WrtDB::WidgetDAOReadOnly &dao);
 #endif