Add missing mandoline dependencies.
[chromium-blink-merge.git] / ui / keyboard / keyboard.cc
blob4e26637c9a3511012221e24682bbfc016e20a7ff
1 // Copyright (c) 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.
5 #include "ui/keyboard/keyboard.h"
7 #include "base/files/file_path.h"
8 #include "base/path_service.h"
9 #include "ui/base/resource/resource_bundle.h"
11 namespace keyboard {
13 void InitializeKeyboard() {
14 static bool initialized = false;
15 if (initialized)
16 return;
17 initialized = true;
19 base::FilePath pak_dir;
20 PathService::Get(base::DIR_MODULE, &pak_dir);
21 base::FilePath pak_file = pak_dir.Append(
22 FILE_PATH_LITERAL("keyboard_resources.pak"));
23 ui::ResourceBundle::GetSharedInstance().AddDataPackFromPath(
24 pak_file, ui::SCALE_FACTOR_100P);
27 } // namespace keyboard