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

Side by Side Diff: chrome/browser/android/most_visited_sites.h

Issue 1542413002: Switch to standard integer types in chrome/browser/, part 1 of 4. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 12 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 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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_ANDROID_MOST_VISITED_SITES_H_ 5 #ifndef CHROME_BROWSER_ANDROID_MOST_VISITED_SITES_H_
6 #define CHROME_BROWSER_ANDROID_MOST_VISITED_SITES_H_ 6 #define CHROME_BROWSER_ANDROID_MOST_VISITED_SITES_H_
7 7
8 #include <jni.h> 8 #include <jni.h>
9 #include <stddef.h>
9 10
10 #include <string> 11 #include <string>
11 #include <vector> 12 #include <vector>
12 13
13 #include "base/android/scoped_java_ref.h" 14 #include "base/android/scoped_java_ref.h"
14 #include "base/compiler_specific.h" 15 #include "base/compiler_specific.h"
16 #include "base/macros.h"
15 #include "base/memory/scoped_ptr.h" 17 #include "base/memory/scoped_ptr.h"
16 #include "base/memory/weak_ptr.h" 18 #include "base/memory/weak_ptr.h"
17 #include "base/scoped_observer.h" 19 #include "base/scoped_observer.h"
18 #include "components/history/core/browser/history_types.h" 20 #include "components/history/core/browser/history_types.h"
19 #include "components/history/core/browser/top_sites_observer.h" 21 #include "components/history/core/browser/top_sites_observer.h"
20 #include "components/suggestions/proto/suggestions.pb.h" 22 #include "components/suggestions/proto/suggestions.pb.h"
21 #include "components/sync_driver/sync_service_observer.h" 23 #include "components/sync_driver/sync_service_observer.h"
22 #include "url/gurl.h" 24 #include "url/gurl.h"
23 25
24 namespace suggestions { 26 namespace suggestions {
(...skipping 188 matching lines...) Expand 10 before | Expand all | Expand 10 after
213 215
214 ScopedVector<Suggestion> current_suggestions_; 216 ScopedVector<Suggestion> current_suggestions_;
215 217
216 // For callbacks may be run after destruction. 218 // For callbacks may be run after destruction.
217 base::WeakPtrFactory<MostVisitedSites> weak_ptr_factory_; 219 base::WeakPtrFactory<MostVisitedSites> weak_ptr_factory_;
218 220
219 DISALLOW_COPY_AND_ASSIGN(MostVisitedSites); 221 DISALLOW_COPY_AND_ASSIGN(MostVisitedSites);
220 }; 222 };
221 223
222 #endif // CHROME_BROWSER_ANDROID_MOST_VISITED_SITES_H_ 224 #endif // CHROME_BROWSER_ANDROID_MOST_VISITED_SITES_H_
OLDNEW
« no previous file with comments | « chrome/browser/android/mock_location_settings.h ('k') | chrome/browser/android/most_visited_sites_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698