summaryrefslogtreecommitdiffstats
path: root/chrome/browser/ui/views/frame/system_menu_insertion_delegate_win.cc
blob: 5f2c20e4f38cb89db0468f08957a9d7596ac01c8 (plain)
1
2
3
4
5
6
7
8
9
10
11
// Copyright (c) 2013 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 "chrome/browser/ui/views/frame/system_menu_insertion_delegate_win.h"

#include <algorithm>

int SystemMenuInsertionDelegateWin::GetInsertionIndex(HMENU native_menu) {
  return std::max(0, GetMenuItemCount(native_menu) - 1);
}