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#import <Cocoa/Cocoa.h> 6 7#include "chrome/browser/ui/browser_dialogs.h" 8 9namespace chrome { 10 11// Declared in browser_dialogs.h so others don't have to depend on this header. 12// TODO(noms): Add implementation when the User Manager dialog is implemented. 13void ShowUserManager(const base::FilePath& profile_path_to_focus) { 14 NOTIMPLEMENTED(); 15} 16 17void HideUserManager() { 18 NOTIMPLEMENTED(); 19} 20 21} // namespace chrome 22