summaryrefslogtreecommitdiffstats
path: root/chrome/browser/chromeos/input_method/mock_input_method_delegate.cc
blob: 7114fbe1a5f2578158ebdabde5b5e59d024e7721 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// Copyright (c) 2012 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/chromeos/input_method/mock_input_method_delegate.h"

namespace chromeos {
namespace input_method {

MockInputMethodDelegate::MockInputMethodDelegate()
    : active_locale_("en") {
}

MockInputMethodDelegate::~MockInputMethodDelegate() {
}

std::string MockInputMethodDelegate::GetHardwareKeyboardLayout() const {
  return hardware_keyboard_layout_;
}

std::string MockInputMethodDelegate::GetActiveLocale() const {
  return active_locale_;
}

}  // namespace input_method
}  // namespace chromeos