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

Side by Side Diff: chrome/browser/renderer_host/pepper/pepper_flash_browser_host.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 (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_RENDERER_HOST_PEPPER_PEPPER_FLASH_BROWSER_HOST_H_ 5 #ifndef CHROME_BROWSER_RENDERER_HOST_PEPPER_PEPPER_FLASH_BROWSER_HOST_H_
6 #define CHROME_BROWSER_RENDERER_HOST_PEPPER_PEPPER_FLASH_BROWSER_HOST_H_ 6 #define CHROME_BROWSER_RENDERER_HOST_PEPPER_PEPPER_FLASH_BROWSER_HOST_H_
7 7
8 #include "base/basictypes.h" 8 #include <stdint.h>
9
10 #include "base/macros.h"
9 #include "base/memory/ref_counted.h" 11 #include "base/memory/ref_counted.h"
10 #include "base/memory/weak_ptr.h" 12 #include "base/memory/weak_ptr.h"
11 #include "ppapi/host/host_message_context.h" 13 #include "ppapi/host/host_message_context.h"
12 #include "ppapi/host/resource_host.h" 14 #include "ppapi/host/resource_host.h"
13 15
14 namespace base { 16 namespace base {
15 class Time; 17 class Time;
16 } 18 }
17 19
18 namespace content { 20 namespace content {
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
58 // For fetching the Flash LSO settings. 60 // For fetching the Flash LSO settings.
59 scoped_refptr<content_settings::CookieSettings> cookie_settings_; 61 scoped_refptr<content_settings::CookieSettings> cookie_settings_;
60 base::WeakPtrFactory<PepperFlashBrowserHost> weak_factory_; 62 base::WeakPtrFactory<PepperFlashBrowserHost> weak_factory_;
61 63
62 DISALLOW_COPY_AND_ASSIGN(PepperFlashBrowserHost); 64 DISALLOW_COPY_AND_ASSIGN(PepperFlashBrowserHost);
63 }; 65 };
64 66
65 } // namespace chrome 67 } // namespace chrome
66 68
67 #endif // CHROME_BROWSER_RENDERER_HOST_PEPPER_PEPPER_FLASH_BROWSER_HOST_H_ 69 #endif // CHROME_BROWSER_RENDERER_HOST_PEPPER_PEPPER_FLASH_BROWSER_HOST_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698