OLD | NEW |
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 CHROME_BROWSER_AUTOCOMPLETE_AUTOCOMPLETE_LOG_H_ | 5 #ifndef CHROME_BROWSER_AUTOCOMPLETE_AUTOCOMPLETE_LOG_H_ |
6 #define CHROME_BROWSER_AUTOCOMPLETE_AUTOCOMPLETE_LOG_H_ | 6 #define CHROME_BROWSER_AUTOCOMPLETE_AUTOCOMPLETE_LOG_H_ |
7 #pragma once | |
8 | 7 |
9 #include <stddef.h> | 8 #include <stddef.h> |
10 | 9 |
11 #include "base/string16.h" | 10 #include "base/string16.h" |
12 #include "base/time.h" | 11 #include "base/time.h" |
13 #include "chrome/browser/autocomplete/autocomplete_input.h" | 12 #include "chrome/browser/autocomplete/autocomplete_input.h" |
14 #include "chrome/browser/autocomplete/autocomplete_provider.h" | 13 #include "chrome/browser/autocomplete/autocomplete_provider.h" |
15 #include "chrome/browser/sessions/session_id.h" | 14 #include "chrome/browser/sessions/session_id.h" |
16 #include "chrome/common/metrics/proto/omnibox_event.pb.h" | 15 #include "chrome/common/metrics/proto/omnibox_event.pb.h" |
17 | 16 |
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
70 // Result set. | 69 // Result set. |
71 const AutocompleteResult& result; | 70 const AutocompleteResult& result; |
72 | 71 |
73 // Diagnostic information from providers. See | 72 // Diagnostic information from providers. See |
74 // AutocompleteController::AddProvidersInfo() and | 73 // AutocompleteController::AddProvidersInfo() and |
75 // AutocompleteProvider::AddProviderInfo() above. | 74 // AutocompleteProvider::AddProviderInfo() above. |
76 ProvidersInfo providers_info; | 75 ProvidersInfo providers_info; |
77 }; | 76 }; |
78 | 77 |
79 #endif // CHROME_BROWSER_AUTOCOMPLETE_AUTOCOMPLETE_LOG_H_ | 78 #endif // CHROME_BROWSER_AUTOCOMPLETE_AUTOCOMPLETE_LOG_H_ |
OLD | NEW |