Address cpplint issue "Do not use namespace using-directives. Use using-declarations instead. [build/namespaces] [5]"
This commit is contained in:
parent
20d0bda538
commit
63eeb96e71
2 changed files with 4 additions and 2 deletions
|
@ -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 {
|
||||
|
||||
|
|
|
@ -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 {
|
||||
|
||||
|
|
Loading…
Reference in a new issue