Coding style changes

This commit is contained in:
Cheng Zhao 2017-12-05 11:50:06 +09:00
parent eaa4b71c24
commit 776e8afa2b
3 changed files with 13 additions and 11 deletions

View file

@ -84,7 +84,7 @@ class Session: public mate::TrackableObject<Session>,
void CreateInterruptedDownload(const mate::Dictionary& options);
void AddPreload(const base::FilePath::StringType& preloadPath);
void RemovePreload(const base::FilePath::StringType& preloadPath);
std::vector<base::FilePath::StringType> GetPreloads();
std::vector<base::FilePath::StringType> GetPreloads() const;
v8::Local<v8::Value> Cookies(v8::Isolate* isolate);
v8::Local<v8::Value> Protocol(v8::Isolate* isolate);
v8::Local<v8::Value> WebRequest(v8::Isolate* isolate);
@ -107,7 +107,7 @@ class Session: public mate::TrackableObject<Session>,
std::string devtools_network_emulation_client_id_;
scoped_refptr<AtomBrowserContext> browser_context_;
std::vector<base::FilePath::StringType> g_preloads;
std::vector<base::FilePath::StringType> preloads_;
DISALLOW_COPY_AND_ASSIGN(Session);
};