Remove cpplint errors

This commit is contained in:
Kevin Sawicki 2017-03-23 12:48:22 -07:00
parent 1d42073ceb
commit be0c0e278a
9 changed files with 128 additions and 84 deletions

View file

@ -5,18 +5,18 @@
#ifndef BRIGHTRAY_BROWSER_WIN_SCOPED_HSTRING_H_
#define BRIGHTRAY_BROWSER_WIN_SCOPED_HSTRING_H_
#include <string>
#include <hstring.h>
#include <windows.h>
#include <string>
#include "base/macros.h"
class ScopedHString {
public:
// Copy from |source|.
ScopedHString(const wchar_t* source);
ScopedHString(const std::wstring& source);
explicit ScopedHString(const wchar_t* source);
explicit ScopedHString(const std::wstring& source);
// Create empty string.
ScopedHString();
~ScopedHString();