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

Unified Diff: ash/common/system/tray/ime_info.h

Issue 2734653002: chromeos: Move files in //ash/common to //ash (Closed)
Patch Set: fix a11y tests, fix docs Created 3 years, 10 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ash/common/system/tray/hover_highlight_view.cc ('k') | ash/common/system/tray/ime_info.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/common/system/tray/ime_info.h
diff --git a/ash/common/system/tray/ime_info.h b/ash/common/system/tray/ime_info.h
deleted file mode 100644
index d250fd663b2993caf4b1ec9eb342e25adc1c8715..0000000000000000000000000000000000000000
--- a/ash/common/system/tray/ime_info.h
+++ /dev/null
@@ -1,64 +0,0 @@
-// Copyright 2016 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.
-
-#ifndef ASH_COMMON_SYSTEM_TRAY_IME_INFO_H_
-#define ASH_COMMON_SYSTEM_TRAY_IME_INFO_H_
-
-#include <string>
-#include <vector>
-
-#include "ash/ash_export.h"
-#include "base/strings/string16.h"
-
-namespace ash {
-
-struct ASH_EXPORT IMEInfo {
- IMEInfo();
- IMEInfo(const IMEInfo& other);
- ~IMEInfo();
-
- // True if the IME the current IME.
- bool selected;
-
- // True if the IME is a third-party extension.
- bool third_party;
-
- // ID that identifies the IME (e.g., "t:latn-post", "pinyin", "hangul").
- std::string id;
-
- // Long name of the IME, which is used to specify the user-visible name.
- base::string16 name;
-
- // Medium name of the IME, which is same with short name in most cases, unless
- // find in a table for medium length names.
- base::string16 medium_name;
-
- // Indicator of the IME (e.g., "US"). If indicator is empty, use the first two
- // character in its preferred keyboard layout or language code (e.g., "ko",
- // "ja", "en-US").
- base::string16 short_name;
-};
-
-using IMEInfoList = std::vector<IMEInfo>;
-
-struct ASH_EXPORT IMEPropertyInfo {
- IMEPropertyInfo();
- ~IMEPropertyInfo();
-
- // True if the property is a selection item.
- bool selected;
-
- // The key which identifies the property, e.g. "InputMode.HalfWidthKatakana".
- std::string key;
-
- // The description of the property, e.g. "Switch to full punctuation mode",
- // "Hiragana".
- base::string16 name;
-};
-
-using IMEPropertyInfoList = std::vector<IMEPropertyInfo>;
-
-} // namespace ash
-
-#endif // ASH_COMMON_SYSTEM_TRAY_IME_INFO_H_
« no previous file with comments | « ash/common/system/tray/hover_highlight_view.cc ('k') | ash/common/system/tray/ime_info.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698