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

Side by Side Diff: content/browser/web_contents/web_contents_impl.h

Issue 2255093005: Pass accessible location change messages to the automation API. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Speculative fix to cast_shell Created 4 years, 4 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 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ 5 #ifndef CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_
6 #define CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ 6 #define CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_
7 7
8 #include <stdint.h> 8 #include <stdint.h>
9 9
10 #include <functional> 10 #include <functional>
(...skipping 439 matching lines...) Expand 10 before | Expand all | Expand 10 after
450 int32_t page_id, 450 int32_t page_id,
451 const base::string16& title, 451 const base::string16& title,
452 base::i18n::TextDirection title_direction) override; 452 base::i18n::TextDirection title_direction) override;
453 void UpdateEncoding(RenderFrameHost* render_frame_host, 453 void UpdateEncoding(RenderFrameHost* render_frame_host,
454 const std::string& encoding) override; 454 const std::string& encoding) override;
455 WebContents* GetAsWebContents() override; 455 WebContents* GetAsWebContents() override;
456 bool IsNeverVisible() override; 456 bool IsNeverVisible() override;
457 AccessibilityMode GetAccessibilityMode() const override; 457 AccessibilityMode GetAccessibilityMode() const override;
458 void AccessibilityEventReceived( 458 void AccessibilityEventReceived(
459 const std::vector<AXEventNotificationDetails>& details) override; 459 const std::vector<AXEventNotificationDetails>& details) override;
460 void AccessibilityLocationChangesReceived(
461 const std::vector<AXLocationChangeNotificationDetails>& details) override;
460 RenderFrameHost* GetGuestByInstanceID( 462 RenderFrameHost* GetGuestByInstanceID(
461 RenderFrameHost* render_frame_host, 463 RenderFrameHost* render_frame_host,
462 int browser_plugin_instance_id) override; 464 int browser_plugin_instance_id) override;
463 device::GeolocationServiceContext* GetGeolocationServiceContext() override; 465 device::GeolocationServiceContext* GetGeolocationServiceContext() override;
464 WakeLockServiceContext* GetWakeLockServiceContext() override; 466 WakeLockServiceContext* GetWakeLockServiceContext() override;
465 void EnterFullscreenMode(const GURL& origin) override; 467 void EnterFullscreenMode(const GURL& origin) override;
466 void ExitFullscreenMode(bool will_cause_resize) override; 468 void ExitFullscreenMode(bool will_cause_resize) override;
467 bool ShouldRouteMessageEvent( 469 bool ShouldRouteMessageEvent(
468 RenderFrameHost* target_rfh, 470 RenderFrameHost* target_rfh,
469 SiteInstance* source_site_instance) const override; 471 SiteInstance* source_site_instance) const override;
(...skipping 977 matching lines...) Expand 10 before | Expand all | Expand 10 after
1447 // Adds/removes a callback called on creation of each new WebContents. 1449 // Adds/removes a callback called on creation of each new WebContents.
1448 static void AddCreatedCallbackForTesting(const CreatedCallback& callback); 1450 static void AddCreatedCallbackForTesting(const CreatedCallback& callback);
1449 static void RemoveCreatedCallbackForTesting(const CreatedCallback& callback); 1451 static void RemoveCreatedCallbackForTesting(const CreatedCallback& callback);
1450 1452
1451 DISALLOW_COPY_AND_ASSIGN(FriendZone); 1453 DISALLOW_COPY_AND_ASSIGN(FriendZone);
1452 }; 1454 };
1453 1455
1454 } // namespace content 1456 } // namespace content
1455 1457
1456 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ 1458 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_
OLDNEW
« no previous file with comments | « content/browser/frame_host/render_frame_host_impl.cc ('k') | content/browser/web_contents/web_contents_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698