| OLD | NEW |
| 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_CLIPBOARD_MESSAGE_FILTE
R_H_ | 5 #ifndef CHROME_BROWSER_RENDERER_HOST_PEPPER_PEPPER_FLASH_CLIPBOARD_MESSAGE_FILTE
R_H_ |
| 6 #define CHROME_BROWSER_RENDERER_HOST_PEPPER_PEPPER_FLASH_CLIPBOARD_MESSAGE_FILTE
R_H_ | 6 #define CHROME_BROWSER_RENDERER_HOST_PEPPER_PEPPER_FLASH_CLIPBOARD_MESSAGE_FILTE
R_H_ |
| 7 | 7 |
| 8 #include <stdint.h> |
| 9 |
| 8 #include <string> | 10 #include <string> |
| 9 #include <vector> | 11 #include <vector> |
| 10 | 12 |
| 11 #include "base/basictypes.h" | |
| 12 #include "base/compiler_specific.h" | 13 #include "base/compiler_specific.h" |
| 14 #include "base/macros.h" |
| 13 #include "ppapi/host/resource_message_filter.h" | 15 #include "ppapi/host/resource_message_filter.h" |
| 14 #include "ppapi/shared_impl/flash_clipboard_format_registry.h" | 16 #include "ppapi/shared_impl/flash_clipboard_format_registry.h" |
| 15 | 17 |
| 16 namespace ppapi { | 18 namespace ppapi { |
| 17 namespace host { | 19 namespace host { |
| 18 struct HostMessageContext; | 20 struct HostMessageContext; |
| 19 } | 21 } |
| 20 } | 22 } |
| 21 | 23 |
| 22 namespace ui { | 24 namespace ui { |
| (...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 69 ui::ScopedClipboardWriter* scw); | 71 ui::ScopedClipboardWriter* scw); |
| 70 | 72 |
| 71 ppapi::FlashClipboardFormatRegistry custom_formats_; | 73 ppapi::FlashClipboardFormatRegistry custom_formats_; |
| 72 | 74 |
| 73 DISALLOW_COPY_AND_ASSIGN(PepperFlashClipboardMessageFilter); | 75 DISALLOW_COPY_AND_ASSIGN(PepperFlashClipboardMessageFilter); |
| 74 }; | 76 }; |
| 75 | 77 |
| 76 } // namespace chrome | 78 } // namespace chrome |
| 77 | 79 |
| 78 #endif // CHROME_BROWSER_RENDERER_HOST_PEPPER_PEPPER_FLASH_CLIPBOARD_MESSAGE_FI
LTER_H_ | 80 #endif // CHROME_BROWSER_RENDERER_HOST_PEPPER_PEPPER_FLASH_CLIPBOARD_MESSAGE_FI
LTER_H_ |
| OLD | NEW |