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

Unified Diff: content/browser/browser_plugin/browser_plugin_guest_manager.cc

Issue 63253002: Rename WebKit namespace to blink (part 3) (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
Index: content/browser/browser_plugin/browser_plugin_guest_manager.cc
diff --git a/content/browser/browser_plugin/browser_plugin_guest_manager.cc b/content/browser/browser_plugin/browser_plugin_guest_manager.cc
index 7e2ad44eee65c5ffb552245926b000b5153e4b3f..82d05658afb54590ed828746a0b6399498dc11f3 100644
--- a/content/browser/browser_plugin/browser_plugin_guest_manager.cc
+++ b/content/browser/browser_plugin/browser_plugin_guest_manager.cc
@@ -245,9 +245,9 @@ void BrowserPluginGuestManager::DidSendScreenRects(
bool BrowserPluginGuestManager::UnlockMouseIfNecessary(
WebContentsImpl* embedder_web_contents,
const NativeWebKeyboardEvent& event) {
- if ((event.type != WebKit::WebInputEvent::RawKeyDown) ||
+ if ((event.type != blink::WebInputEvent::RawKeyDown) ||
(event.windowsKeyCode != ui::VKEY_ESCAPE) ||
- (event.modifiers & WebKit::WebInputEvent::InputModifiers)) {
+ (event.modifiers & blink::WebInputEvent::InputModifiers)) {
return false;
}

Powered by Google App Engine
This is Rietveld 408576698