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

Side by Side Diff: ui/events/mojo/mojo_extended_key_event_data.cc

Issue 2014003002: mojo/converters/input_events -> ui/events/mojo (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@converters
Patch Set: . 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 unified diff | Download patch
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2016 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 <stdint.h> 5 #include <stdint.h>
6 6
7 #include "mojo/converters/input_events/mojo_extended_key_event_data.h" 7 #include "ui/events/mojo/mojo_extended_key_event_data.h"
8 8
9 namespace mojo { 9 namespace mojo {
10 10
11 MojoExtendedKeyEventData::MojoExtendedKeyEventData(int32_t windows_key_code, 11 MojoExtendedKeyEventData::MojoExtendedKeyEventData(int32_t windows_key_code,
12 uint16_t text, 12 uint16_t text,
13 uint16_t unmodified_text) 13 uint16_t unmodified_text)
14 : windows_key_code_(windows_key_code), 14 : windows_key_code_(windows_key_code),
15 text_(text), 15 text_(text),
16 unmodified_text_(unmodified_text) { 16 unmodified_text_(unmodified_text) {
17 } 17 }
18 18
19 MojoExtendedKeyEventData::~MojoExtendedKeyEventData() {} 19 MojoExtendedKeyEventData::~MojoExtendedKeyEventData() {}
20 20
21 ui::ExtendedKeyEventData* MojoExtendedKeyEventData::Clone() const { 21 ui::ExtendedKeyEventData* MojoExtendedKeyEventData::Clone() const {
22 return new MojoExtendedKeyEventData(windows_key_code_, 22 return new MojoExtendedKeyEventData(windows_key_code_,
23 text_, 23 text_,
24 unmodified_text_); 24 unmodified_text_);
25 } 25 }
26 26
27 } // namespace mojo 27 } // namespace mojo
OLDNEW
« no previous file with comments | « ui/events/mojo/mojo_extended_key_event_data.h ('k') | ui/events/mojo/mojo_input_events_export.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698