Address cpplint issue "Do not use namespace using-directives. Use using-declarations instead. [build/namespaces] [5]"

This commit is contained in:
Ales Pergl 2017-04-03 11:23:36 +02:00
parent 20d0bda538
commit 63eeb96e71
2 changed files with 4 additions and 2 deletions

View file

@ -7,7 +7,8 @@
#include "browser/win/win32_desktop_notifications/common.h"
#include "browser/win/win32_desktop_notifications/toast.h"
using namespace std;
using std::make_shared;
using std::shared_ptr;
namespace brightray {

View file

@ -8,7 +8,8 @@
#pragma comment(lib, "msimg32.lib")
#pragma comment(lib, "uxtheme.lib")
using namespace std;
using std::min;
using std::shared_ptr;
namespace brightray {