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

Side by Side Diff: content/renderer/renderer_accessibility.h

Issue 8869006: Remove special casing for firing load completes. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Initial patch. Created 9 years 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 | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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_RENDERER_RENDERER_ACCESSIBILITY_H_ 5 #ifndef CONTENT_RENDERER_RENDERER_ACCESSIBILITY_H_
6 #define CONTENT_RENDERER_RENDERER_ACCESSIBILITY_H_ 6 #define CONTENT_RENDERER_RENDERER_ACCESSIBILITY_H_
7 #pragma once 7 #pragma once
8 8
9 #include <vector> 9 #include <vector>
10 10
(...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after
113 // TODO(dmazzoni): remove once https://bugs.webkit.org/show_bug.cgi?id=73460 113 // TODO(dmazzoni): remove once https://bugs.webkit.org/show_bug.cgi?id=73460
114 // is fixed. 114 // is fixed.
115 gfx::Size last_scroll_offset_; 115 gfx::Size last_scroll_offset_;
116 116
117 // Set if we are waiting for an accessibility notification ack. 117 // Set if we are waiting for an accessibility notification ack.
118 bool ack_pending_; 118 bool ack_pending_;
119 119
120 // True if verbose logging of accessibility events is on. 120 // True if verbose logging of accessibility events is on.
121 bool logging_; 121 bool logging_;
122 122
123 // True if we've sent a load complete notification for this page already.
124 bool sent_load_complete_;
125
126 DISALLOW_COPY_AND_ASSIGN(RendererAccessibility); 123 DISALLOW_COPY_AND_ASSIGN(RendererAccessibility);
127 }; 124 };
128 125
129 #endif // CONTENT_RENDERER_RENDERER_ACCESSIBILITY_H_ 126 #endif // CONTENT_RENDERER_RENDERER_ACCESSIBILITY_H_
OLDNEW
« no previous file with comments | « no previous file | content/renderer/renderer_accessibility.cc » ('j') | content/renderer/renderer_accessibility.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698