diff options
Diffstat (limited to 'chrome/browser/fullscreen_chromeos.cc')
-rw-r--r-- | chrome/browser/fullscreen_chromeos.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/browser/fullscreen_chromeos.cc b/chrome/browser/fullscreen_chromeos.cc index 605f4bd..652114e 100644 --- a/chrome/browser/fullscreen_chromeos.cc +++ b/chrome/browser/fullscreen_chromeos.cc @@ -9,7 +9,7 @@ bool IsFullScreenMode() { // TODO(oshima): Fullscreen is per display state. Investigate // and fix if necessary. - ash::internal::RootWindowController* controller = - ash::internal::RootWindowController::ForTargetRootWindow(); + ash::RootWindowController* controller = + ash::RootWindowController::ForTargetRootWindow(); return controller && controller->GetWindowForFullscreenMode(); } |