| Index: ui/aura/root_window_host_linux.h
|
| diff --git a/ui/aura/root_window_host_linux.h b/ui/aura/root_window_host_linux.h
|
| index a045a52d0e86feecbb616dfd417955ab9c02efaf..5b4c96a1b0b3c5cd5fee5c844c4ef5183620a58c 100644
|
| --- a/ui/aura/root_window_host_linux.h
|
| +++ b/ui/aura/root_window_host_linux.h
|
| @@ -42,6 +42,7 @@ class RootWindowHostLinux : public RootWindowHost {
|
| virtual bool ConfineCursorToRootWindow() OVERRIDE;
|
| virtual void UnConfineCursor() OVERRIDE;
|
| virtual void MoveCursorTo(const gfx::Point& location) OVERRIDE;
|
| + virtual void SetFocusWhenShown(bool focus_when_shown) OVERRIDE;
|
| virtual void PostNativeEvent(const base::NativeEvent& event) OVERRIDE;
|
|
|
| // Returns true if there's an X window manager present... in most cases. Some
|
| @@ -74,6 +75,9 @@ class RootWindowHostLinux : public RootWindowHost {
|
| // The bounds of |xwindow_|.
|
| gfx::Rect bounds_;
|
|
|
| + // True if the window should be focused when the window is shown.
|
| + bool focus_when_shown_;
|
| +
|
| DISALLOW_COPY_AND_ASSIGN(RootWindowHostLinux);
|
| };
|
|
|
|
|