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

Side by Side Diff: third_party/WebKit/Source/core/page/ChromeClient.h

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) 2006, 2007, 2008, 2009, 2010, 2011, 2012 Apple, Inc. All rights 2 * Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011, 2012 Apple, Inc. All rights
3 * reserved. 3 * reserved.
4 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies). 4 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies).
5 * Copyright (C) 2012 Samsung Electronics. All rights reserved. 5 * Copyright (C) 2012 Samsung Electronics. All rights reserved.
6 * 6 *
7 * This library is free software; you can redistribute it and/or 7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Library General Public 8 * modify it under the terms of the GNU Library General Public
9 * License as published by the Free Software Foundation; either 9 * License as published by the Free Software Foundation; either
10 * version 2 of the License, or (at your option) any later version. 10 * version 2 of the License, or (at your option) any later version.
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
43 #include "public/platform/BlameContext.h" 43 #include "public/platform/BlameContext.h"
44 #include "public/platform/WebDragOperation.h" 44 #include "public/platform/WebDragOperation.h"
45 #include "public/platform/WebEventListenerProperties.h" 45 #include "public/platform/WebEventListenerProperties.h"
46 #include "public/platform/WebFocusType.h" 46 #include "public/platform/WebFocusType.h"
47 47
48 // To avoid conflicts with the CreateWindow macro from the Windows SDK... 48 // To avoid conflicts with the CreateWindow macro from the Windows SDK...
49 #undef CreateWindow 49 #undef CreateWindow
50 50
51 namespace blink { 51 namespace blink {
52 52
53 class AXObject; 53 class AXObjectImpl;
54 class ColorChooser; 54 class ColorChooser;
55 class ColorChooserClient; 55 class ColorChooserClient;
56 class CompositorWorkerProxyClient; 56 class CompositorWorkerProxyClient;
57 class CompositorAnimationTimeline; 57 class CompositorAnimationTimeline;
58 class DateTimeChooser; 58 class DateTimeChooser;
59 class DateTimeChooserClient; 59 class DateTimeChooserClient;
60 class Element; 60 class Element;
61 class FileChooser; 61 class FileChooser;
62 class FloatPoint; 62 class FloatPoint;
63 class Frame; 63 class Frame;
(...skipping 208 matching lines...) Expand 10 before | Expand all | Expand 10 after
272 virtual void UpdateEventRectsForSubframeIfNecessary(LocalFrame*) = 0; 272 virtual void UpdateEventRectsForSubframeIfNecessary(LocalFrame*) = 0;
273 virtual void SetHasScrollEventHandlers(LocalFrame*, bool) = 0; 273 virtual void SetHasScrollEventHandlers(LocalFrame*, bool) = 0;
274 274
275 virtual void SetTouchAction(LocalFrame*, TouchAction) = 0; 275 virtual void SetTouchAction(LocalFrame*, TouchAction) = 0;
276 276
277 // Checks if there is an opened popup, called by LayoutMenuList::showPopup(). 277 // Checks if there is an opened popup, called by LayoutMenuList::showPopup().
278 virtual bool HasOpenedPopup() const = 0; 278 virtual bool HasOpenedPopup() const = 0;
279 virtual PopupMenu* OpenPopupMenu(LocalFrame&, HTMLSelectElement&) = 0; 279 virtual PopupMenu* OpenPopupMenu(LocalFrame&, HTMLSelectElement&) = 0;
280 virtual DOMWindow* PagePopupWindowForTesting() const = 0; 280 virtual DOMWindow* PagePopupWindowForTesting() const = 0;
281 281
282 virtual void PostAccessibilityNotification(AXObject*, 282 virtual void PostAccessibilityNotification(AXObjectImpl*,
283 AXObjectCache::AXNotification) {} 283 AXObjectCache::AXNotification) {}
284 virtual String AcceptLanguages() = 0; 284 virtual String AcceptLanguages() = 0;
285 285
286 enum DialogType { 286 enum DialogType {
287 kAlertDialog = 0, 287 kAlertDialog = 0,
288 kConfirmDialog = 1, 288 kConfirmDialog = 1,
289 kPromptDialog = 2, 289 kPromptDialog = 2,
290 kHTMLDialog = 3 290 kHTMLDialog = 3
291 }; 291 };
292 virtual bool ShouldOpenModalDialogDuringPageDismissal( 292 virtual bool ShouldOpenModalDialogDuringPageDismissal(
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after
378 WeakMember<Node> last_mouse_over_node_; 378 WeakMember<Node> last_mouse_over_node_;
379 LayoutPoint last_tool_tip_point_; 379 LayoutPoint last_tool_tip_point_;
380 String last_tool_tip_text_; 380 String last_tool_tip_text_;
381 381
382 FRIEND_TEST_ALL_PREFIXES(ChromeClientTest, SetToolTipFlood); 382 FRIEND_TEST_ALL_PREFIXES(ChromeClientTest, SetToolTipFlood);
383 }; 383 };
384 384
385 } // namespace blink 385 } // namespace blink
386 386
387 #endif // ChromeClient_h 387 #endif // ChromeClient_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698