Fix building on Windows

This commit is contained in:
Cheng Zhao 2015-06-26 12:04:15 +08:00
parent e6f3c4c22b
commit 637b642837
4 changed files with 11 additions and 11 deletions

View file

@ -248,6 +248,9 @@ class NativeWindow : public content::WebContentsObserver,
// Window icon.
gfx::ImageSkia icon_;
// Observers of this window.
ObserverList<NativeWindowObserver> observers_;
private:
// Schedule a notification unresponsive event.
void ScheduleUnresponsiveEvent(int ms);
@ -260,9 +263,6 @@ class NativeWindow : public content::WebContentsObserver,
const SkBitmap& bitmap,
content::ReadbackResponse response);
// Observers of this window.
ObserverList<NativeWindowObserver> observers_;
// The windows has been closed.
bool is_closed_;