| OLD | NEW |
| 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_DEVICE_ID_FETCHER_H_ | 5 #ifndef CHROME_BROWSER_RENDERER_HOST_PEPPER_DEVICE_ID_FETCHER_H_ |
| 6 #define CHROME_BROWSER_RENDERER_HOST_PEPPER_DEVICE_ID_FETCHER_H_ | 6 #define CHROME_BROWSER_RENDERER_HOST_PEPPER_DEVICE_ID_FETCHER_H_ |
| 7 | 7 |
| 8 #include <stdint.h> |
| 9 |
| 8 #include <string> | 10 #include <string> |
| 9 | 11 |
| 10 #include "base/basictypes.h" | |
| 11 #include "base/callback.h" | 12 #include "base/callback.h" |
| 12 #include "base/compiler_specific.h" | 13 #include "base/compiler_specific.h" |
| 13 #include "base/files/file_path.h" | 14 #include "base/files/file_path.h" |
| 15 #include "base/macros.h" |
| 14 #include "base/memory/ref_counted.h" | 16 #include "base/memory/ref_counted.h" |
| 15 #include "ppapi/c/pp_instance.h" | 17 #include "ppapi/c/pp_instance.h" |
| 16 | 18 |
| 17 class Profile; | 19 class Profile; |
| 18 | 20 |
| 19 namespace content { | 21 namespace content { |
| 20 class BrowserPpapiHost; | 22 class BrowserPpapiHost; |
| 21 } | 23 } |
| 22 | 24 |
| 23 namespace user_prefs { | 25 namespace user_prefs { |
| (...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 74 bool in_progress_; | 76 bool in_progress_; |
| 75 | 77 |
| 76 int render_process_id_; | 78 int render_process_id_; |
| 77 | 79 |
| 78 DISALLOW_COPY_AND_ASSIGN(DeviceIDFetcher); | 80 DISALLOW_COPY_AND_ASSIGN(DeviceIDFetcher); |
| 79 }; | 81 }; |
| 80 | 82 |
| 81 } // namespace chrome | 83 } // namespace chrome |
| 82 | 84 |
| 83 #endif // CHROME_BROWSER_RENDERER_HOST_PEPPER_DEVICE_ID_FETCHER_H_ | 85 #endif // CHROME_BROWSER_RENDERER_HOST_PEPPER_DEVICE_ID_FETCHER_H_ |
| OLD | NEW |