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

Side by Side Diff: components/omnibox/browser/bookmark_provider.h

Issue 1551433002: Switch to standard integer types in components/, part 3 of 4. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: more Created 4 years, 11 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 // 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 COMPONENTS_OMNIBOX_BROWSER_BOOKMARK_PROVIDER_H_ 5 #ifndef COMPONENTS_OMNIBOX_BROWSER_BOOKMARK_PROVIDER_H_
6 #define COMPONENTS_OMNIBOX_BROWSER_BOOKMARK_PROVIDER_H_ 6 #define COMPONENTS_OMNIBOX_BROWSER_BOOKMARK_PROVIDER_H_
7 7
8 #include <stddef.h>
9
8 #include <string> 10 #include <string>
9 11
10 #include "base/gtest_prod_util.h" 12 #include "base/gtest_prod_util.h"
13 #include "base/macros.h"
11 #include "components/omnibox/browser/autocomplete_input.h" 14 #include "components/omnibox/browser/autocomplete_input.h"
12 #include "components/omnibox/browser/autocomplete_match.h" 15 #include "components/omnibox/browser/autocomplete_match.h"
13 #include "components/omnibox/browser/autocomplete_provider.h" 16 #include "components/omnibox/browser/autocomplete_provider.h"
14 #include "components/query_parser/snippet.h" 17 #include "components/query_parser/snippet.h"
15 18
16 class AutocompleteProviderClient; 19 class AutocompleteProviderClient;
17 20
18 namespace bookmarks { 21 namespace bookmarks {
19 class BookmarkModel; 22 class BookmarkModel;
20 struct BookmarkMatch; 23 struct BookmarkMatch;
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
74 AutocompleteProviderClient* client_; 77 AutocompleteProviderClient* client_;
75 bookmarks::BookmarkModel* bookmark_model_; 78 bookmarks::BookmarkModel* bookmark_model_;
76 79
77 // Languages used during the URL formatting. 80 // Languages used during the URL formatting.
78 std::string languages_; 81 std::string languages_;
79 82
80 DISALLOW_COPY_AND_ASSIGN(BookmarkProvider); 83 DISALLOW_COPY_AND_ASSIGN(BookmarkProvider);
81 }; 84 };
82 85
83 #endif // COMPONENTS_OMNIBOX_BROWSER_BOOKMARK_PROVIDER_H_ 86 #endif // COMPONENTS_OMNIBOX_BROWSER_BOOKMARK_PROVIDER_H_
OLDNEW
« no previous file with comments | « components/omnibox/browser/base_search_provider_unittest.cc ('k') | components/omnibox/browser/bookmark_provider.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698