Come Correct with cpplint

This commit is contained in:
Paul Betts 2015-10-16 16:48:07 -07:00
parent 66a14c5eb5
commit 91a62640ab
2 changed files with 5 additions and 4 deletions

View file

@ -50,6 +50,7 @@ class BrowserClient : public content::ContentBrowserClient {
BrowserMainParts* browser_main_parts_;
NetLog net_log_;
private:
DISALLOW_COPY_AND_ASSIGN(BrowserClient);
};

View file

@ -31,15 +31,15 @@ class DevToolsNetworkController;
class NetLog;
class ExplicitURLSecurityManager : public net::URLSecurityManager {
public:
public:
ExplicitURLSecurityManager();
virtual bool CanUseDefaultCredentials(const GURL& auth_origin) const override;
virtual bool CanDelegate(const GURL& auth_origin) const override;
bool CanUseDefaultCredentials(const GURL& auth_origin) const override;
bool CanDelegate(const GURL& auth_origin) const override;
void AllowNTLMCredentialsForAllDomains(bool should_allow) { allow_default_creds_ = should_allow; }
private:
private:
bool allow_default_creds_;
scoped_ptr<net::URLSecurityManager> orig_url_sec_mgr_;