| OLD | NEW |
| 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_RENDERER_HOST_PEPPER_PEPPER_PLATFORM_VERIFICATION_MESSAGE
_FILTER_H_ | 5 #ifndef CHROME_BROWSER_RENDERER_HOST_PEPPER_PEPPER_PLATFORM_VERIFICATION_MESSAGE
_FILTER_H_ |
| 6 #define CHROME_BROWSER_RENDERER_HOST_PEPPER_PEPPER_PLATFORM_VERIFICATION_MESSAGE
_FILTER_H_ | 6 #define CHROME_BROWSER_RENDERER_HOST_PEPPER_PEPPER_PLATFORM_VERIFICATION_MESSAGE
_FILTER_H_ |
| 7 | 7 |
| 8 #include <stdint.h> |
| 9 |
| 10 #include "base/macros.h" |
| 8 #include "chrome/browser/chromeos/attestation/platform_verification_flow.h" | 11 #include "chrome/browser/chromeos/attestation/platform_verification_flow.h" |
| 9 #include "ppapi/c/pp_instance.h" | 12 #include "ppapi/c/pp_instance.h" |
| 10 #include "ppapi/host/resource_message_filter.h" | 13 #include "ppapi/host/resource_message_filter.h" |
| 11 | 14 |
| 12 namespace content { | 15 namespace content { |
| 13 class BrowserPpapiHost; | 16 class BrowserPpapiHost; |
| 14 } // namespace content | 17 } // namespace content |
| 15 | 18 |
| 16 namespace ppapi { | 19 namespace ppapi { |
| 17 namespace host { | 20 namespace host { |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 56 | 59 |
| 57 // Must only be accessed on the UI thread. | 60 // Must only be accessed on the UI thread. |
| 58 scoped_refptr<chromeos::attestation::PlatformVerificationFlow> pv_; | 61 scoped_refptr<chromeos::attestation::PlatformVerificationFlow> pv_; |
| 59 | 62 |
| 60 DISALLOW_COPY_AND_ASSIGN(PepperPlatformVerificationMessageFilter); | 63 DISALLOW_COPY_AND_ASSIGN(PepperPlatformVerificationMessageFilter); |
| 61 }; | 64 }; |
| 62 | 65 |
| 63 } // namespace chrome | 66 } // namespace chrome |
| 64 | 67 |
| 65 #endif // CHROME_BROWSER_RENDERER_HOST_PEPPER_PEPPER_PLATFORM_VERIFICATION_MESS
AGE_FILTER_H_ | 68 #endif // CHROME_BROWSER_RENDERER_HOST_PEPPER_PEPPER_PLATFORM_VERIFICATION_MESS
AGE_FILTER_H_ |
| OLD | NEW |