summaryrefslogtreecommitdiffstats
path: root/chrome/browser/ui/gtk/user_manager_gtk.cc
blob: d8f09ac7b4c97f0881eca963280b394692234998 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// Copyright 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 <gtk/gtk.h>

#include "chrome/browser/ui/browser_dialogs.h"

namespace chrome {

// Declared in browser_dialogs.h so others don't have to depend on this header.
// TODO(noms): Add implementation when the User Manager dialog is implemented.
void ShowUserManager(const base::FilePath& profile_path_to_focus) {
  NOTIMPLEMENTED();
}

void HideUserManager() {
  NOTIMPLEMENTED();
}

}  // namespace chrome