From f33537336bfe98225a437f0985ab0fe0479b8cee Mon Sep 17 00:00:00 2001 From: Kevin Sawicki Date: Wed, 8 Jun 2016 12:00:03 -0700 Subject: [PATCH] Add default statement --- atom/browser/api/atom_api_web_contents.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/atom/browser/api/atom_api_web_contents.cc b/atom/browser/api/atom_api_web_contents.cc index fd7f0ae70541..6cb9efb9614f 100644 --- a/atom/browser/api/atom_api_web_contents.cc +++ b/atom/browser/api/atom_api_web_contents.cc @@ -749,6 +749,7 @@ std::string WebContents::GetType() const { case BROWSER_WINDOW: return "window"; case WEB_VIEW: return "webview"; case REMOTE: return "remote"; + default: return ""; } }