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

Unified Diff: chrome/browser/guestview/webview/webview_guest.cc

Issue 63273002: Rename WebKit namespace to blink (part 4) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 1 month 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 | « chrome/browser/extensions/webstore_installer.cc ('k') | chrome/browser/history/history_browsertest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/guestview/webview/webview_guest.cc
diff --git a/chrome/browser/guestview/webview/webview_guest.cc b/chrome/browser/guestview/webview/webview_guest.cc
index 9e7cd62d867069be9cfa6c7c4b6b4bebe77d6e63..714c929ab2bb6aa8d681bc44711384516b72902b 100644
--- a/chrome/browser/guestview/webview/webview_guest.cc
+++ b/chrome/browser/guestview/webview/webview_guest.cc
@@ -218,11 +218,11 @@ void WebViewGuest::GuestProcessGone(base::TerminationStatus status) {
bool WebViewGuest::HandleKeyboardEvent(
const content::NativeWebKeyboardEvent& event) {
- if (event.type != WebKit::WebInputEvent::RawKeyDown)
+ if (event.type != blink::WebInputEvent::RawKeyDown)
return false;
#if defined(OS_MACOSX)
- if (event.modifiers != WebKit::WebInputEvent::MetaKey)
+ if (event.modifiers != blink::WebInputEvent::MetaKey)
return false;
if (event.windowsKeyCode == ui::VKEY_OEM_4) {
« no previous file with comments | « chrome/browser/extensions/webstore_installer.cc ('k') | chrome/browser/history/history_browsertest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698