Home
last modified time | relevance | path

Searched refs:custom_formats_ (Results 1 – 4 of 4) sorted by relevance

/external/chromium_org/ppapi/shared_impl/
Dflash_clipboard_format_registry.cc43 custom_formats_.size() > kMaxNumFormats) { in RegisterFormat()
46 uint32_t key = kFirstCustomFormat + custom_formats_.size(); in RegisterFormat()
47 custom_formats_[key] = format_name; in RegisterFormat()
54 custom_formats_[format] = format_name; in SetRegisteredFormat()
58 return custom_formats_.find(format) != custom_formats_.end(); in IsFormatRegistered()
62 FormatMap::const_iterator it = custom_formats_.find(format); in GetFormatName()
63 if (it == custom_formats_.end()) in GetFormatName()
70 for (FormatMap::const_iterator it = custom_formats_.begin(); in GetFormatID()
71 it != custom_formats_.end(); in GetFormatID()
Dflash_clipboard_format_registry.h57 FormatMap custom_formats_; variable
/external/chromium_org/chrome/browser/renderer_host/pepper/
Dpepper_flash_clipboard_message_filter.cc145 uint32_t format = custom_formats_.RegisterFormat(format_name); in OnMsgRegisterCustomFormat()
185 if (custom_formats_.IsFormatRegistered(format)) { in OnMsgIsFormatAvailable()
186 std::string format_name = custom_formats_.GetFormatName(format); in OnMsgIsFormatAvailable()
262 if (custom_formats_.IsFormatRegistered(format)) { in OnMsgReadData()
264 base::UTF8ToUTF16(custom_formats_.GetFormatName(format)); in OnMsgReadData()
328 if (custom_formats_.IsFormatRegistered(formats[i])) { in OnMsgWriteData()
329 std::string format_name = custom_formats_.GetFormatName(formats[i]); in OnMsgWriteData()
Dpepper_flash_clipboard_message_filter.h71 ppapi::FlashClipboardFormatRegistry custom_formats_; variable