| Index: ash/shelf/shelf_util.cc
|
| diff --git a/ash/shelf/shelf_util.cc b/ash/shelf/shelf_util.cc
|
| index 77031d803ae050a17d099f6332ba5f60f713c21d..f914188b0060b69ca5ab465b5302cf550e5ddf1c 100644
|
| --- a/ash/shelf/shelf_util.cc
|
| +++ b/ash/shelf/shelf_util.cc
|
| @@ -31,14 +31,14 @@ LauncherID GetLauncherIDForWindow(aura::Window* window) {
|
| return window->GetProperty(kLauncherID);
|
| }
|
|
|
| -void SetLauncherItemDetailsForWindow(aura::Window* window,
|
| - const LauncherItemDetails& details) {
|
| +void SetShelfItemDetailsForWindow(aura::Window* window,
|
| + const LauncherItemDetails& details) {
|
| // |item_details| is owned by |window|.
|
| LauncherItemDetails* item_details = new LauncherItemDetails(details);
|
| window->SetProperty(kLauncherItemDetailsKey, item_details);
|
| }
|
|
|
| -void ClearLauncherItemDetailsForWindow(aura::Window* window) {
|
| +void ClearShelfItemDetailsForWindow(aura::Window* window) {
|
| window->ClearProperty(kLauncherItemDetailsKey);
|
| }
|
|
|
|
|