#include <utility>
#include <vector>
+#if defined(OS_WIN)
+#include <shlobj.h>
+#endif
+
#include "atom/browser/atom_browser_context.h"
#include "atom/browser/atom_browser_main_parts.h"
#include "atom/browser/browser.h"
#if defined(OS_WIN)
#include "ui/gfx/switches.h"
-#include <shlobj.h>
#endif
using content::NavigationEntry;
blink::WebCustomElement::addEmbedderCustomElementName("browserplugin");
#if defined(OS_WIN)
- base::CommandLine* command_line = base::CommandLine::ForCurrentProcess();
- base::string16 explicit_app_id = command_line->GetSwitchValueNative(switches::kAppUserModelId);
+ base::CommandLine* command_line =
+ base::CommandLine::ForCurrentProcess();
+ base::string16 explicit_app_id =
+ command_line->GetSwitchValueNative(switches::kAppUserModelId);
if (explicit_app_id.length() > 0) {
SetCurrentProcessExplicitAppUserModelID(explicit_app_id.c_str());