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

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

Issue 2858493002: Rename AXObject to AXObjectImpl in modules/ and web/ (Closed)
Patch Set: Fixed rebase 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 70 matching lines...) Expand 10 before | Expand all | Expand 10 after
81 #include "core/page/FrameTree.h" 81 #include "core/page/FrameTree.h"
82 #include "core/page/Page.h" 82 #include "core/page/Page.h"
83 #include "core/page/PagePopupClient.h" 83 #include "core/page/PagePopupClient.h"
84 #include "core/page/PointerLockController.h" 84 #include "core/page/PointerLockController.h"
85 #include "core/page/ScopedPageSuspender.h" 85 #include "core/page/ScopedPageSuspender.h"
86 #include "core/page/TouchDisambiguation.h" 86 #include "core/page/TouchDisambiguation.h"
87 #include "core/page/scrolling/TopDocumentRootScrollerController.h" 87 #include "core/page/scrolling/TopDocumentRootScrollerController.h"
88 #include "core/paint/PaintLayer.h" 88 #include "core/paint/PaintLayer.h"
89 #include "core/timing/DOMWindowPerformance.h" 89 #include "core/timing/DOMWindowPerformance.h"
90 #include "core/timing/Performance.h" 90 #include "core/timing/Performance.h"
91 #include "modules/accessibility/AXObject.h"
92 #include "modules/accessibility/AXObjectCacheImpl.h" 91 #include "modules/accessibility/AXObjectCacheImpl.h"
92 #include "modules/accessibility/AXObjectImpl.h"
93 #include "modules/credentialmanager/CredentialManagerClient.h" 93 #include "modules/credentialmanager/CredentialManagerClient.h"
94 #include "modules/encryptedmedia/MediaKeysController.h" 94 #include "modules/encryptedmedia/MediaKeysController.h"
95 #include "modules/speech/SpeechRecognitionClientProxy.h" 95 #include "modules/speech/SpeechRecognitionClientProxy.h"
96 #include "modules/storage/StorageNamespaceController.h" 96 #include "modules/storage/StorageNamespaceController.h"
97 #include "modules/webdatabase/DatabaseClient.h" 97 #include "modules/webdatabase/DatabaseClient.h"
98 #include "modules/webgl/WebGLRenderingContext.h" 98 #include "modules/webgl/WebGLRenderingContext.h"
99 #include "platform/ContextMenu.h" 99 #include "platform/ContextMenu.h"
100 #include "platform/ContextMenuItem.h" 100 #include "platform/ContextMenuItem.h"
101 #include "platform/Cursor.h" 101 #include "platform/Cursor.h"
102 #include "platform/Histogram.h" 102 #include "platform/Histogram.h"
(...skipping 4048 matching lines...) Expand 10 before | Expand all | Expand 10 after
4151 if (focused_frame->LocalFrameRoot() != MainFrameImpl()->GetFrame()) 4151 if (focused_frame->LocalFrameRoot() != MainFrameImpl()->GetFrame())
4152 return nullptr; 4152 return nullptr;
4153 return focused_frame; 4153 return focused_frame;
4154 } 4154 }
4155 4155
4156 LocalFrame* WebViewImpl::FocusedLocalFrameAvailableForIme() const { 4156 LocalFrame* WebViewImpl::FocusedLocalFrameAvailableForIme() const {
4157 return ime_accept_events_ ? FocusedLocalFrameInWidget() : nullptr; 4157 return ime_accept_events_ ? FocusedLocalFrameInWidget() : nullptr;
4158 } 4158 }
4159 4159
4160 } // namespace blink 4160 } // namespace blink
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/web/WebPagePopupImpl.cpp ('k') | third_party/WebKit/public/web/WebAXObject.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698