#include "content/common/wrt/wrt_url_parse.h"
#include "content/public/renderer/render_thread.h"
#include "content/public/renderer/render_view.h"
+#include "tizen/common/application_data.h"
#include "tizen_src/ewk/efl_integration/wrt/wrtwidget.h"
#include "third_party/WebKit/public/web/WebView.h"
#endif
bool is_initial_navigation,
bool is_server_redirect,
bool* send_referrer) {
+#if defined(USE_EFL)
+ auto app_data = ::common::ApplicationDataManager::GetCurrentAppData();
+ if (app_data && !app_data->IsElectronApp())
+ return false;
+#endif
// Handle all the navigations and reloads in browser.
// FIXME We only support GET here because http method will be ignored when
// the OpenURLFromTab is triggered, which means form posting would not work,