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

Side by Side Diff: chrome/browser/search/suggestions/suggestions_source.h

Issue 1548133002: Switch to standard integer types in chrome/browser/, part 3 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 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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_SEARCH_SUGGESTIONS_SUGGESTIONS_SOURCE_H_ 5 #ifndef CHROME_BROWSER_SEARCH_SUGGESTIONS_SUGGESTIONS_SOURCE_H_
6 #define CHROME_BROWSER_SEARCH_SUGGESTIONS_SUGGESTIONS_SOURCE_H_ 6 #define CHROME_BROWSER_SEARCH_SUGGESTIONS_SUGGESTIONS_SOURCE_H_
7 7
8 #include <map> 8 #include <map>
9 #include <string> 9 #include <string>
10 10
11 #include "base/basictypes.h"
12 #include "base/callback.h" 11 #include "base/callback.h"
12 #include "base/macros.h"
13 #include "base/memory/weak_ptr.h" 13 #include "base/memory/weak_ptr.h"
14 #include "components/suggestions/proto/suggestions.pb.h" 14 #include "components/suggestions/proto/suggestions.pb.h"
15 #include "content/public/browser/url_data_source.h" 15 #include "content/public/browser/url_data_source.h"
16 #include "url/gurl.h" 16 #include "url/gurl.h"
17 17
18 class Profile; 18 class Profile;
19 class SkBitmap; 19 class SkBitmap;
20 20
21 namespace base { 21 namespace base {
22 class RefCountedMemory; 22 class RefCountedMemory;
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
73 73
74 // For callbacks may be run after destruction. 74 // For callbacks may be run after destruction.
75 base::WeakPtrFactory<SuggestionsSource> weak_ptr_factory_; 75 base::WeakPtrFactory<SuggestionsSource> weak_ptr_factory_;
76 76
77 DISALLOW_COPY_AND_ASSIGN(SuggestionsSource); 77 DISALLOW_COPY_AND_ASSIGN(SuggestionsSource);
78 }; 78 };
79 79
80 } // namespace suggestions 80 } // namespace suggestions
81 81
82 #endif // CHROME_BROWSER_SEARCH_SUGGESTIONS_SUGGESTIONS_SOURCE_H_ 82 #endif // CHROME_BROWSER_SEARCH_SUGGESTIONS_SUGGESTIONS_SOURCE_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698