OLD | NEW |
1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 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 CHROME_BROWSER_AUTOCOMPLETE_HISTORY_URL_PROVIDER_H_ | 5 #ifndef CHROME_BROWSER_AUTOCOMPLETE_HISTORY_URL_PROVIDER_H_ |
6 #define CHROME_BROWSER_AUTOCOMPLETE_HISTORY_URL_PROVIDER_H_ | 6 #define CHROME_BROWSER_AUTOCOMPLETE_HISTORY_URL_PROVIDER_H_ |
7 | 7 |
8 #include <vector> | 8 #include <vector> |
9 #include <deque> | 9 #include <deque> |
10 | 10 |
(...skipping 83 matching lines...) Loading... |
94 // Set when "http://" should be trimmed from the beginning of the URLs. | 94 // Set when "http://" should be trimmed from the beginning of the URLs. |
95 bool trim_http; | 95 bool trim_http; |
96 | 96 |
97 // Set by the main thread to cancel this request. READ ONLY when running in | 97 // Set by the main thread to cancel this request. READ ONLY when running in |
98 // ExecuteWithDB() on the history thread to prevent deadlock. If this flag is | 98 // ExecuteWithDB() on the history thread to prevent deadlock. If this flag is |
99 // set when the query runs, the query will be abandoned. This allows us to | 99 // set when the query runs, the query will be abandoned. This allows us to |
100 // avoid running queries that are no longer needed. Since we don't care if | 100 // avoid running queries that are no longer needed. Since we don't care if |
101 // we run the extra queries, the lack of signaling is not a problem. | 101 // we run the extra queries, the lack of signaling is not a problem. |
102 bool cancel; | 102 bool cancel; |
103 | 103 |
| 104 // Set by ExecuteWithDB() on the history thread when the query could not be |
| 105 // performed because the history system failed to properly init the database. |
| 106 // If this is set when the main thread is called back, it avoids changing |
| 107 // |matches_| at all, so it won't delete the default match |
| 108 // RunAutocompletePasses() creates. |
| 109 bool failed; |
| 110 |
104 // List of matches written by the history thread. We keep this separate list | 111 // List of matches written by the history thread. We keep this separate list |
105 // to avoid having the main thread read the provider's matches while the | 112 // to avoid having the main thread read the provider's matches while the |
106 // history thread is manipulating them. The provider copies this list back | 113 // history thread is manipulating them. The provider copies this list back |
107 // to matches_ on the main thread in QueryComplete(). | 114 // to matches_ on the main thread in QueryComplete(). |
108 ACMatches matches; | 115 ACMatches matches; |
109 | 116 |
110 // Languages we should pass to gfx::GetCleanStringFromUrl. | 117 // Languages we should pass to gfx::GetCleanStringFromUrl. |
111 std::wstring languages; | 118 std::wstring languages; |
112 | 119 |
113 private: | 120 private: |
(...skipping 264 matching lines...) Loading... |
378 const Prefixes prefixes_; | 385 const Prefixes prefixes_; |
379 | 386 |
380 // Params for the current query. The provider should not free this directly; | 387 // Params for the current query. The provider should not free this directly; |
381 // instead, it is passed as a parameter through the history backend, and the | 388 // instead, it is passed as a parameter through the history backend, and the |
382 // parameter itself is freed once it's no longer needed. The only reason we | 389 // parameter itself is freed once it's no longer needed. The only reason we |
383 // keep this member is so we can set the cancel bit on it. | 390 // keep this member is so we can set the cancel bit on it. |
384 HistoryURLProviderParams* params_; | 391 HistoryURLProviderParams* params_; |
385 }; | 392 }; |
386 | 393 |
387 #endif // CHROME_BROWSER_AUTOCOMPLETE_HISTORY_URL_PROVIDER_H_ | 394 #endif // CHROME_BROWSER_AUTOCOMPLETE_HISTORY_URL_PROVIDER_H_ |
OLD | NEW |