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

Unified Diff: ui/views/controls/webview/BUILD.gn

Issue 1403283002: Aura on Android: UnhandledKeyboardEventHandler::HandleNativeKeyboardEvent implementaion. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@auraclank_upstream_events
Patch Set: Renaming nhandled_keyboard_event_handler_linux to nhandled_keyboard_event_handler_default Created 5 years, 2 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 | « no previous file | ui/views/controls/webview/unhandled_keyboard_event_handler_default.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/views/controls/webview/BUILD.gn
diff --git a/ui/views/controls/webview/BUILD.gn b/ui/views/controls/webview/BUILD.gn
index ddb380d3379f7e3b69be772db9494cc3c148a943..9ad4b60efb880229051efdf08abdb8a1ef2f7e8b 100644
--- a/ui/views/controls/webview/BUILD.gn
+++ b/ui/views/controls/webview/BUILD.gn
@@ -6,7 +6,6 @@ component("webview") {
sources = [
"unhandled_keyboard_event_handler.cc",
"unhandled_keyboard_event_handler.h",
- "unhandled_keyboard_event_handler_linux.cc",
"unhandled_keyboard_event_handler_win.cc",
"web_dialog_view.cc",
"web_dialog_view.h",
@@ -39,6 +38,10 @@ component("webview") {
"//ui/gfx/geometry",
"//ui/views",
]
+
+ if (is_linux || is_android) {
+ sources += [ "unhandled_keyboard_event_handler_default.cc" ]
+ }
}
source_set("test_support") {
« no previous file with comments | « no previous file | ui/views/controls/webview/unhandled_keyboard_event_handler_default.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698