blob: f7ba77f0bfc2f54263a3c9d571358d5e9de95528 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "ash/launcher/launcher_util.h"
#include "ash/launcher/launcher_model.h"
#include "ash/launcher/launcher_types.h"
namespace ash {
namespace launcher {
int GetBrowserItemIndex(const LauncherModel& launcher_model) {
for (size_t i = 0; i < launcher_model.items().size(); i++) {
if (launcher_model.items()[i].type == ash::TYPE_BROWSER_SHORTCUT)
return i;
}
return -1;
}
} // namespace launcher
} // namespace ash
|