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

Unified Diff: chrome/browser/guest_view/web_view/chrome_web_view_guest_delegate.h

Issue 1997453003: Fix "unused variable" warnings. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add Java file Created 4 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/guest_view/web_view/chrome_web_view_guest_delegate.h
diff --git a/chrome/browser/guest_view/web_view/chrome_web_view_guest_delegate.h b/chrome/browser/guest_view/web_view/chrome_web_view_guest_delegate.h
index 3419de73729e50aefeec2e70a629bf42cc6bc346..682f4a233738427bd9b9d1bf3d5e01fadeea5d4b 100644
--- a/chrome/browser/guest_view/web_view/chrome_web_view_guest_delegate.h
+++ b/chrome/browser/guest_view/web_view/chrome_web_view_guest_delegate.h
@@ -59,14 +59,14 @@ class ChromeWebViewGuestDelegate : public WebViewGuestDelegate {
// We only need the ids to be unique for a given WebViewGuest.
int pending_context_menu_request_id_;
- // Set to |true| if ChromeVox was already injected in main frame.
- bool chromevox_injected_;
-
// Holds the RenderViewContextMenuBase that has been built but yet to be
// shown. This is .reset() after ShowContextMenu().
std::unique_ptr<RenderViewContextMenuBase> pending_menu_;
#if defined(OS_CHROMEOS)
+ // Set to |true| if ChromeVox was already injected in main frame.
+ bool chromevox_injected_ = false;
+
// Subscription to receive notifications on changes to a11y settings.
std::unique_ptr<chromeos::AccessibilityStatusSubscription>
accessibility_subscription_;

Powered by Google App Engine
This is Rietveld 408576698