OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "chrome/browser/ui/views/ash/launcher/browser_launcher_item_controller.
h" | 5 #include "chrome/browser/ui/views/ash/launcher/browser_launcher_item_controller.
h" |
6 | 6 |
7 #include "ash/launcher/launcher.h" | 7 #include "ash/launcher/launcher.h" |
8 #include "ash/launcher/launcher_model.h" | 8 #include "ash/launcher/launcher_model.h" |
9 #include "ash/shell.h" | 9 #include "ash/shell.h" |
10 #include "ash/wm/window_util.h" | 10 #include "ash/wm/window_util.h" |
(...skipping 239 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
250 app_state = ChromeLauncherController::APP_STATE_ACTIVE; | 250 app_state = ChromeLauncherController::APP_STATE_ACTIVE; |
251 } else { | 251 } else { |
252 app_state = ChromeLauncherController::APP_STATE_INACTIVE; | 252 app_state = ChromeLauncherController::APP_STATE_INACTIVE; |
253 } | 253 } |
254 launcher_controller_->UpdateAppState(tab, app_state); | 254 launcher_controller_->UpdateAppState(tab, app_state); |
255 } | 255 } |
256 | 256 |
257 ash::LauncherModel* BrowserLauncherItemController::launcher_model() { | 257 ash::LauncherModel* BrowserLauncherItemController::launcher_model() { |
258 return launcher_controller_->model(); | 258 return launcher_controller_->model(); |
259 } | 259 } |
OLD | NEW |