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

Unified Diff: ui/base/ime/linux/text_edit_command_auralinux.h

Issue 2064053002: Move ui/events/linux/* to ui/base/ime/linux/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@refactor7_correct_text_edit_command_aura_typo
Patch Set: Rebase. Created 4 years, 6 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 | « ui/base/ime/BUILD.gn ('k') | ui/base/ime/linux/text_edit_command_auralinux.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/base/ime/linux/text_edit_command_auralinux.h
diff --git a/ui/events/linux/text_edit_command_auralinux.h b/ui/base/ime/linux/text_edit_command_auralinux.h
similarity index 83%
rename from ui/events/linux/text_edit_command_auralinux.h
rename to ui/base/ime/linux/text_edit_command_auralinux.h
index 5373ab26362f410f5e5889a576507b22b351eaa1..12dd7a1ac4e1d3c0a89901029064849007f17c49 100644
--- a/ui/events/linux/text_edit_command_auralinux.h
+++ b/ui/base/ime/linux/text_edit_command_auralinux.h
@@ -2,18 +2,18 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#ifndef UI_EVENTS_X_TEXT_EDIT_COMMAND_X11_H_
-#define UI_EVENTS_X_TEXT_EDIT_COMMAND_X11_H_
+#ifndef UI_BASE_IME_LINUX_TEXT_EDIT_COMMAND_AURALINUX_H_
+#define UI_BASE_IME_LINUX_TEXT_EDIT_COMMAND_AURALINUX_H_
#include <string>
-#include "ui/events/events_export.h"
+#include "ui/base/ime/ui_base_ime_export.h"
namespace ui {
// Represents a command that performs a specific operation on text.
// Copy and assignment are explicitly allowed; these objects live in vectors.
-class EVENTS_EXPORT TextEditCommandAuraLinux {
+class UI_BASE_IME_EXPORT TextEditCommandAuraLinux {
public:
enum CommandId {
COPY,
@@ -53,8 +53,8 @@ class EVENTS_EXPORT TextEditCommandAuraLinux {
};
TextEditCommandAuraLinux(CommandId command_id,
- const std::string& argument,
- bool extend_selection)
+ const std::string& argument,
+ bool extend_selection)
: command_id_(command_id),
argument_(argument),
extend_selection_(extend_selection) {}
@@ -79,4 +79,4 @@ class EVENTS_EXPORT TextEditCommandAuraLinux {
} // namespace ui
-#endif // UI_EVENTS_X_TEXT_EDIT_COMMAND_X11_H_
+#endif // UI_BASE_IME_LINUX_TEXT_EDIT_COMMAND_AURALINUX_H_
« no previous file with comments | « ui/base/ime/BUILD.gn ('k') | ui/base/ime/linux/text_edit_command_auralinux.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698