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

Side by Side Diff: chrome/browser/renderer_host/pepper/pepper_flash_drm_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) 2013 The Chromium Authors. All rights reserved. 1 // Copyright (c) 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_RENDERER_HOST_PEPPER_PEPPER_FLASH_DRM_HOST_H_ 5 #ifndef CHROME_BROWSER_RENDERER_HOST_PEPPER_PEPPER_FLASH_DRM_HOST_H_
6 #define CHROME_BROWSER_RENDERER_HOST_PEPPER_PEPPER_FLASH_DRM_HOST_H_ 6 #define CHROME_BROWSER_RENDERER_HOST_PEPPER_PEPPER_FLASH_DRM_HOST_H_
7 7
8 #include <stdint.h>
9
8 #include <string> 10 #include <string>
9 11
12 #include "base/macros.h"
10 #include "base/memory/weak_ptr.h" 13 #include "base/memory/weak_ptr.h"
11 #include "chrome/browser/renderer_host/pepper/device_id_fetcher.h" 14 #include "chrome/browser/renderer_host/pepper/device_id_fetcher.h"
12 #include "ppapi/host/host_message_context.h" 15 #include "ppapi/host/host_message_context.h"
13 #include "ppapi/host/resource_host.h" 16 #include "ppapi/host/resource_host.h"
14 17
15 namespace content { 18 namespace content {
16 class BrowserPpapiHost; 19 class BrowserPpapiHost;
17 } 20 }
18 21
19 namespace IPC { 22 namespace IPC {
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
51 scoped_refptr<MonitorFinder> monitor_finder_; 54 scoped_refptr<MonitorFinder> monitor_finder_;
52 55
53 base::WeakPtrFactory<PepperFlashDRMHost> weak_factory_; 56 base::WeakPtrFactory<PepperFlashDRMHost> weak_factory_;
54 57
55 DISALLOW_COPY_AND_ASSIGN(PepperFlashDRMHost); 58 DISALLOW_COPY_AND_ASSIGN(PepperFlashDRMHost);
56 }; 59 };
57 60
58 } // namespace chrome 61 } // namespace chrome
59 62
60 #endif // CHROME_BROWSER_RENDERER_HOST_PEPPER_PEPPER_FLASH_DRM_HOST_H_ 63 #endif // CHROME_BROWSER_RENDERER_HOST_PEPPER_PEPPER_FLASH_DRM_HOST_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698