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

Side by Side Diff: third_party/WebKit/Source/web/WebViewImpl.cpp

Issue 2858493002: Rename AXObject to AXObjectImpl in modules/ and web/ (Closed)
Patch Set: Reverted unexpected change to blink rename merge helper Created 3 years, 7 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 /* 1 /*
2 * Copyright (C) 2011, 2012 Google Inc. All rights reserved. 2 * Copyright (C) 2011, 2012 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after
80 #include "core/page/FrameTree.h" 80 #include "core/page/FrameTree.h"
81 #include "core/page/Page.h" 81 #include "core/page/Page.h"
82 #include "core/page/PagePopupClient.h" 82 #include "core/page/PagePopupClient.h"
83 #include "core/page/PointerLockController.h" 83 #include "core/page/PointerLockController.h"
84 #include "core/page/ScopedPageSuspender.h" 84 #include "core/page/ScopedPageSuspender.h"
85 #include "core/page/TouchDisambiguation.h" 85 #include "core/page/TouchDisambiguation.h"
86 #include "core/page/scrolling/TopDocumentRootScrollerController.h" 86 #include "core/page/scrolling/TopDocumentRootScrollerController.h"
87 #include "core/paint/PaintLayer.h" 87 #include "core/paint/PaintLayer.h"
88 #include "core/timing/DOMWindowPerformance.h" 88 #include "core/timing/DOMWindowPerformance.h"
89 #include "core/timing/Performance.h" 89 #include "core/timing/Performance.h"
90 #include "modules/accessibility/AXObject.h"
91 #include "modules/accessibility/AXObjectCacheImpl.h" 90 #include "modules/accessibility/AXObjectCacheImpl.h"
91 #include "modules/accessibility/AXObjectImpl.h"
92 #include "modules/credentialmanager/CredentialManagerClient.h" 92 #include "modules/credentialmanager/CredentialManagerClient.h"
93 #include "modules/encryptedmedia/MediaKeysController.h" 93 #include "modules/encryptedmedia/MediaKeysController.h"
94 #include "modules/storage/StorageNamespaceController.h" 94 #include "modules/storage/StorageNamespaceController.h"
95 #include "modules/webdatabase/DatabaseClient.h" 95 #include "modules/webdatabase/DatabaseClient.h"
96 #include "modules/webgl/WebGLRenderingContext.h" 96 #include "modules/webgl/WebGLRenderingContext.h"
97 #include "platform/ContextMenu.h" 97 #include "platform/ContextMenu.h"
98 #include "platform/ContextMenuItem.h" 98 #include "platform/ContextMenuItem.h"
99 #include "platform/Cursor.h" 99 #include "platform/Cursor.h"
100 #include "platform/Histogram.h" 100 #include "platform/Histogram.h"
101 #include "platform/KeyboardCodes.h" 101 #include "platform/KeyboardCodes.h"
(...skipping 4083 matching lines...) Expand 10 before | Expand all | Expand 10 after
4185 if (focused_frame->LocalFrameRoot() != MainFrameImpl()->GetFrame()) 4185 if (focused_frame->LocalFrameRoot() != MainFrameImpl()->GetFrame())
4186 return nullptr; 4186 return nullptr;
4187 return focused_frame; 4187 return focused_frame;
4188 } 4188 }
4189 4189
4190 LocalFrame* WebViewImpl::FocusedLocalFrameAvailableForIme() const { 4190 LocalFrame* WebViewImpl::FocusedLocalFrameAvailableForIme() const {
4191 return ime_accept_events_ ? FocusedLocalFrameInWidget() : nullptr; 4191 return ime_accept_events_ ? FocusedLocalFrameInWidget() : nullptr;
4192 } 4192 }
4193 4193
4194 } // namespace blink 4194 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698