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

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

Issue 1959183002: Multi-Process Find-in-Page. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Disabled tests on Android Release because of crbug.com/615291. Created 4 years, 6 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, 2013 Apple Inc. All rights reserv ed. 2 * Copyright (C) 2006, 2007, 2008, 2009, 2010, 2013 Apple Inc. All rights reserv ed.
3 * Copyright (C) 2008 Torch Mobile Inc. All rights reserved. (http://www.torchmo bile.com/) 3 * Copyright (C) 2008 Torch Mobile Inc. All rights reserved. (http://www.torchmo bile.com/)
4 * 4 *
5 * This library is free software; you can redistribute it and/or 5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Library General Public 6 * modify it under the terms of the GNU Library General Public
7 * License as published by the Free Software Foundation; either 7 * License as published by the Free Software Foundation; either
8 * version 2 of the License, or (at your option) any later version. 8 * version 2 of the License, or (at your option) any later version.
9 * 9 *
10 * This library is distributed in the hope that it will be useful, 10 * This library is distributed in the hope that it will be useful,
(...skipping 149 matching lines...) Expand 10 before | Expand all | Expand 10 after
160 160
161 Settings& settings() const { return *m_settings; } 161 Settings& settings() const { return *m_settings; }
162 162
163 UseCounter& useCounter() { return m_useCounter; } 163 UseCounter& useCounter() { return m_useCounter; }
164 Deprecation& deprecation() { return m_deprecation; } 164 Deprecation& deprecation() { return m_deprecation; }
165 HostsUsingFeatures& hostsUsingFeatures() { return m_hostsUsingFeatures; } 165 HostsUsingFeatures& hostsUsingFeatures() { return m_hostsUsingFeatures; }
166 166
167 void setTabKeyCyclesThroughElements(bool b) { m_tabKeyCyclesThroughElements = b; } 167 void setTabKeyCyclesThroughElements(bool b) { m_tabKeyCyclesThroughElements = b; }
168 bool tabKeyCyclesThroughElements() const { return m_tabKeyCyclesThroughEleme nts; } 168 bool tabKeyCyclesThroughElements() const { return m_tabKeyCyclesThroughEleme nts; }
169 169
170 void unmarkAllTextMatches();
171
172 // DefersLoading is used to delay loads during modal dialogs. 170 // DefersLoading is used to delay loads during modal dialogs.
173 // Modal dialogs are supposed to freeze all background processes 171 // Modal dialogs are supposed to freeze all background processes
174 // in the page, including prevent additional loads from staring/continuing. 172 // in the page, including prevent additional loads from staring/continuing.
175 void setDefersLoading(bool); 173 void setDefersLoading(bool);
176 bool defersLoading() const { return m_defersLoading; } 174 bool defersLoading() const { return m_defersLoading; }
177 175
178 void setPageScaleFactor(float); 176 void setPageScaleFactor(float);
179 float pageScaleFactor() const; 177 float pageScaleFactor() const;
180 178
181 float deviceScaleFactor() const { return m_deviceScaleFactor; } 179 float deviceScaleFactor() const { return m_deviceScaleFactor; }
(...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after
282 Member<MemoryPurgeController> m_memoryPurgeController; 280 Member<MemoryPurgeController> m_memoryPurgeController;
283 281
284 Timer<Page> m_timerForCompressStrings; 282 Timer<Page> m_timerForCompressStrings;
285 }; 283 };
286 284
287 extern template class CORE_EXTERN_TEMPLATE_EXPORT Supplement<Page>; 285 extern template class CORE_EXTERN_TEMPLATE_EXPORT Supplement<Page>;
288 286
289 } // namespace blink 287 } // namespace blink
290 288
291 #endif // Page_h 289 #endif // Page_h
OLDNEW
« no previous file with comments | « content/test/data/find_in_page_multi_frame.html ('k') | third_party/WebKit/Source/core/page/Page.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698