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

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

Issue 558073002: Hook up guest browser plugins to the accessibility tree. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@cross_process_iframes_plugins_3
Patch Set: Rebase Created 6 years, 3 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 <map> 8 #include <map>
9 #include <set> 9 #include <set>
10 #include <string> 10 #include <string>
(...skipping 368 matching lines...) Expand 10 before | Expand all | Expand 10 after
379 int32 page_id, 379 int32 page_id,
380 const base::string16& title, 380 const base::string16& title,
381 base::i18n::TextDirection title_direction) OVERRIDE; 381 base::i18n::TextDirection title_direction) OVERRIDE;
382 virtual void UpdateEncoding(RenderFrameHost* render_frame_host, 382 virtual void UpdateEncoding(RenderFrameHost* render_frame_host,
383 const std::string& encoding) OVERRIDE; 383 const std::string& encoding) OVERRIDE;
384 virtual WebContents* GetAsWebContents() OVERRIDE; 384 virtual WebContents* GetAsWebContents() OVERRIDE;
385 virtual bool IsNeverVisible() OVERRIDE; 385 virtual bool IsNeverVisible() OVERRIDE;
386 virtual AccessibilityMode GetAccessibilityMode() const OVERRIDE; 386 virtual AccessibilityMode GetAccessibilityMode() const OVERRIDE;
387 virtual void AccessibilityEventReceived( 387 virtual void AccessibilityEventReceived(
388 const std::vector<AXEventNotificationDetails>& details) OVERRIDE; 388 const std::vector<AXEventNotificationDetails>& details) OVERRIDE;
389 virtual RenderFrameHost* GetGuestByInstanceID(int browser_plugin_instance_id)
390 OVERRIDE;
389 #if defined(OS_WIN) 391 #if defined(OS_WIN)
390 virtual gfx::NativeViewAccessible GetParentNativeViewAccessible() OVERRIDE; 392 virtual gfx::NativeViewAccessible GetParentNativeViewAccessible() OVERRIDE;
391 #endif 393 #endif
392 394
393 // RenderViewHostDelegate ---------------------------------------------------- 395 // RenderViewHostDelegate ----------------------------------------------------
394 virtual RenderViewHostDelegateView* GetDelegateView() OVERRIDE; 396 virtual RenderViewHostDelegateView* GetDelegateView() OVERRIDE;
395 virtual bool OnMessageReceived(RenderViewHost* render_view_host, 397 virtual bool OnMessageReceived(RenderViewHost* render_view_host,
396 const IPC::Message& message) OVERRIDE; 398 const IPC::Message& message) OVERRIDE;
397 // RenderFrameHostDelegate has the same method, so list it there because this 399 // RenderFrameHostDelegate has the same method, so list it there because this
398 // interface is going away. 400 // interface is going away.
(...skipping 835 matching lines...) Expand 10 before | Expand all | Expand 10 after
1234 1236
1235 // Monitors power levels for audio streams associated with this WebContents. 1237 // Monitors power levels for audio streams associated with this WebContents.
1236 AudioStreamMonitor audio_stream_monitor_; 1238 AudioStreamMonitor audio_stream_monitor_;
1237 1239
1238 DISALLOW_COPY_AND_ASSIGN(WebContentsImpl); 1240 DISALLOW_COPY_AND_ASSIGN(WebContentsImpl);
1239 }; 1241 };
1240 1242
1241 } // namespace content 1243 } // namespace content
1242 1244
1243 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ 1245 #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