1// Copyright 2013 The Chromium Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#include "chrome/browser/ui/app_list/app_list_icon_win.h"
6
7#include "chrome/installer/util/install_util.h"
8#include "grit/theme_resources.h"
9
10int GetAppListIconResourceId() {
11  int icon_id = IDR_APP_LIST;
12#if defined(GOOGLE_CHROME_BUILD)
13  if (InstallUtil::IsChromeSxSProcess())
14    icon_id = IDR_APP_LIST_SXS;
15#endif
16  return icon_id;
17}
18