Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(83)

Side by Side Diff: chrome/browser/chromeos/login/fake_supervised_user_manager.cc

Issue 29263007: linux and chromeos: Turn on -Wunused-const-variable. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: . Created 7 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 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 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "chrome/browser/chromeos/login/fake_supervised_user_manager.h" 5 #include "chrome/browser/chromeos/login/fake_supervised_user_manager.h"
6 6
7 #include <string> 7 #include <string>
8 8
9 namespace {
10
11 // As defined in /chromeos/dbus/cryptohome_client.cc.
12 static const char kUserIdHashSuffix[] = "-hash";
13
14 } // namespace
15
16 namespace chromeos { 9 namespace chromeos {
17 10
18 FakeSupervisedUserManager::FakeSupervisedUserManager() {} 11 FakeSupervisedUserManager::FakeSupervisedUserManager() {}
19 12
20 FakeSupervisedUserManager::~FakeSupervisedUserManager() { 13 FakeSupervisedUserManager::~FakeSupervisedUserManager() {
21 } 14 }
22 15
23 const User* FakeSupervisedUserManager::CreateUserRecord( 16 const User* FakeSupervisedUserManager::CreateUserRecord(
24 const std::string& manager_id, 17 const std::string& manager_id,
25 const std::string& local_user_id, 18 const std::string& local_user_id,
(...skipping 30 matching lines...) Expand all
56 const std::string& managed_user_id) const { 49 const std::string& managed_user_id) const {
57 return std::string(); 50 return std::string();
58 } 51 }
59 52
60 std::string FakeSupervisedUserManager::GetManagerDisplayEmail( 53 std::string FakeSupervisedUserManager::GetManagerDisplayEmail(
61 const std::string& managed_user_id) const { 54 const std::string& managed_user_id) const {
62 return std::string(); 55 return std::string();
63 } 56 }
64 57
65 } // namespace chromeos 58 } // namespace chromeos
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698