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

Side by Side Diff: chrome/browser/android/thumbnail/thumbnail.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 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_ANDROID_THUMBNAIL_THUMBNAIL_H_ 5 #ifndef CHROME_BROWSER_ANDROID_THUMBNAIL_THUMBNAIL_H_
6 #define CHROME_BROWSER_ANDROID_THUMBNAIL_THUMBNAIL_H_ 6 #define CHROME_BROWSER_ANDROID_THUMBNAIL_THUMBNAIL_H_
7 7
8 #include "base/macros.h"
8 #include "base/memory/weak_ptr.h" 9 #include "base/memory/weak_ptr.h"
9 #include "base/time/time.h" 10 #include "base/time/time.h"
10 #include "cc/resources/ui_resource_bitmap.h" 11 #include "cc/resources/ui_resource_bitmap.h"
11 #include "cc/resources/ui_resource_client.h" 12 #include "cc/resources/ui_resource_client.h"
12 #include "ui/gfx/geometry/size_f.h" 13 #include "ui/gfx/geometry/size_f.h"
13 14
14 namespace base { 15 namespace base {
15 class Time; 16 class Time;
16 } 17 }
17 18
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after
82 bool retrieved_; 83 bool retrieved_;
83 84
84 ui::UIResourceProvider* ui_resource_provider_; 85 ui::UIResourceProvider* ui_resource_provider_;
85 ThumbnailDelegate* thumbnail_delegate_; 86 ThumbnailDelegate* thumbnail_delegate_;
86 87
87 base::WeakPtrFactory<Thumbnail> weak_factory_; 88 base::WeakPtrFactory<Thumbnail> weak_factory_;
88 DISALLOW_COPY_AND_ASSIGN(Thumbnail); 89 DISALLOW_COPY_AND_ASSIGN(Thumbnail);
89 }; 90 };
90 91
91 #endif // CHROME_BROWSER_ANDROID_THUMBNAIL_THUMBNAIL_H_ 92 #endif // CHROME_BROWSER_ANDROID_THUMBNAIL_THUMBNAIL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698