From: pius.lee Date: Fri, 5 Jun 2015 04:26:52 +0000 (+0900) Subject: fix comments at end of name namespaces X-Git-Tag: submit/tizen_mobile/20150609.075501^2~5 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=a55103ca2e4c974f8e4d889a7aa68d7c5de53e35;p=platform%2Fcore%2Fapi%2Fwebapi-plugins.git fix comments at end of name namespaces Change-Id: I3ff9536fcdb29d2ffed7b8c274146b626fa87c39 --- diff --git a/src/archive/archive_callback_data.h b/src/archive/archive_callback_data.h index 4815e9ea..238838fe 100755 --- a/src/archive/archive_callback_data.h +++ b/src/archive/archive_callback_data.h @@ -269,7 +269,7 @@ public: OperationCanceledException(const char* message = "Operation Canceled"); }; -} -} +} // namespace archive +} // namespace extension #endif //__ARCHIVE_CALLBACK_DATA_H__ diff --git a/src/archive/archive_file.h b/src/archive/archive_file.h index 61f6a6da..507db585 100755 --- a/src/archive/archive_file.h +++ b/src/archive/archive_file.h @@ -175,7 +175,7 @@ private: friend class BaseProgressCallback; }; -} // archive -} // extension +} // namespace archive +} // namespace extension #endif /* _TIZEN_ARCHIVE_FILE_ENTRY_H_ */ diff --git a/src/archive/archive_file_entry.h b/src/archive/archive_file_entry.h index bbd72f84..ba88c786 100755 --- a/src/archive/archive_file_entry.h +++ b/src/archive/archive_file_entry.h @@ -73,7 +73,7 @@ private: unsigned int m_compression_level; }; -} // archive -} // extension +} // namespace archive +} // namespace extension #endif /* _TIZEN_ARCHIVE_FILE_ENTRY_H_ */ diff --git a/src/archive/archive_manager.h b/src/archive/archive_manager.h index 874082f8..dc0018cf 100755 --- a/src/archive/archive_manager.h +++ b/src/archive/archive_manager.h @@ -53,7 +53,7 @@ private: long m_next_unique_id; }; -} // archive -} // extension +} // namespace archive +} // namespace extension #endif /* _TIZEN_ARCHIVE_ARCHIVE_MANAGER_H_ */ diff --git a/src/archive/filesystem_file.h b/src/archive/filesystem_file.h index 40c86f5d..1dcf06d1 100755 --- a/src/archive/filesystem_file.h +++ b/src/archive/filesystem_file.h @@ -62,7 +62,7 @@ public: }; -} // filesystem -} // extension +} // namespace filesystem +} // namespace extension #endif /* _TIZEN_FILESYSTEM_FILE_H_ */ diff --git a/src/archive/filesystem_node.h b/src/archive/filesystem_node.h index 9cc9b522..322f4b0d 100755 --- a/src/archive/filesystem_node.h +++ b/src/archive/filesystem_node.h @@ -251,8 +251,8 @@ private: }; -} // extension -} // filesystem +} // namespace extension +} // namespace filesystem #endif /* _FILESYSTEM_NODE_H_ */ diff --git a/src/archive/filesystem_path.h b/src/archive/filesystem_path.h index c06b9cb0..8809d13f 100755 --- a/src/archive/filesystem_path.h +++ b/src/archive/filesystem_path.h @@ -75,7 +75,7 @@ bool operator!=(const Path& lhs, const std::string& rhs); bool operator!=(const std::string& lhs, const Path& rhs); -} // filesystem -} // extension +} // namespace filesystem +} // namespace extension #endif /* _FILESYSTEM_PATH_H_ */ diff --git a/src/bluetooth/bluetooth_util.h b/src/bluetooth/bluetooth_util.h index 2673711f..2a48add8 100755 --- a/src/bluetooth/bluetooth_util.h +++ b/src/bluetooth/bluetooth_util.h @@ -34,8 +34,8 @@ const picojson::object& GetArguments(const picojson::value& data); common::PlatformResult GetBluetoothError(int error_code, const std::string& hint); std::string GetBluetoothErrorMessage(int error_code); -} // util -} // bluetooth -} // extension +} // namespace util +} // namespace bluetooth +} // namespace extension #endif // BLUETOOTH_BLUETOOTH_UTIL_H_ diff --git a/src/calendar/calendar.h b/src/calendar/calendar.h index ad9e19f0..dc615a1d 100755 --- a/src/calendar/calendar.h +++ b/src/calendar/calendar.h @@ -188,6 +188,6 @@ class Calendar { }; } // namespace calendar -} // namespace webapi +} // namespace extension #endif // CALENDAR_CALENDAR_H_ diff --git a/src/calendar/calendar_item.h b/src/calendar/calendar_item.h index 9666c110..f0171e7d 100755 --- a/src/calendar/calendar_item.h +++ b/src/calendar/calendar_item.h @@ -185,6 +185,6 @@ class CalendarItem : public CalendarRecord { }; } // namespace calendar -} // namespace webapi +} // namespace extension #endif // CALENDAR_CALENDAR_ITEM_H_ diff --git a/src/calendar/calendar_manager.h b/src/calendar/calendar_manager.h index 5e8e2507..29d0df9b 100755 --- a/src/calendar/calendar_manager.h +++ b/src/calendar/calendar_manager.h @@ -63,6 +63,6 @@ class CalendarManager { }; } // namespace calendar -} // namespace webapi +} // namespace extension #endif /* CALENDAR_CALENDAR_MANAGER_H_ */ diff --git a/src/calendar/calendar_record.h b/src/calendar/calendar_record.h index 8228b674..09f2d2b3 100755 --- a/src/calendar/calendar_record.h +++ b/src/calendar/calendar_record.h @@ -97,6 +97,6 @@ class CalendarRecord { }; } // namespace calendar -} // namespace webapi +} // namespace extension #endif // WEBAPI_PLUGINS_CALENDAR_RECORD_H_ diff --git a/src/common/callback_user_data.cc b/src/common/callback_user_data.cc index a6d39845..85d328b2 100755 --- a/src/common/callback_user_data.cc +++ b/src/common/callback_user_data.cc @@ -46,4 +46,4 @@ std::shared_ptr CallbackUserData::getJson() const { return m_json; } -} // common +} // namespace common diff --git a/src/common/callback_user_data.h b/src/common/callback_user_data.h index 26bed793..8b07d660 100755 --- a/src/common/callback_user_data.h +++ b/src/common/callback_user_data.h @@ -48,6 +48,6 @@ private: bool m_is_act; }; -} // common +} // namespace common #endif // COMMON_CALLBACK_USER_DATA_H_ diff --git a/src/common/converter.h b/src/common/converter.h index 1b9a30d5..35bd577c 100755 --- a/src/common/converter.h +++ b/src/common/converter.h @@ -61,6 +61,6 @@ const T &FromJson(const picojson::object &in, const char *name, return FromJson(v.get(), names...); } -} // common +} // namespace common #endif // COMMON_CONVERTER_H_ diff --git a/src/contact/addressbook.h b/src/contact/addressbook.h index f1aaea49..ca8061cc 100755 --- a/src/contact/addressbook.h +++ b/src/contact/addressbook.h @@ -62,8 +62,8 @@ common::PlatformResult AddressBookBatchFunc(NativeFunction impl, common::PlatformResult AddressBookAddBatch(const JsonObject& args, JsonArray& out); -} // AddressBook -} // contact -} // extension +} // namespace AddressBook +} // namespace contact +} // namespace extension #endif // CONTACT_ADDRESSBOOK_H_ diff --git a/src/contact/contact_util.h b/src/contact/contact_util.h index 2652d1a9..fdcb3a85 100755 --- a/src/contact/contact_util.h +++ b/src/contact/contact_util.h @@ -141,8 +141,8 @@ common::PlatformResult ImportPersonFromContactsRecord( common::PlatformResult CheckDBConnection(); -} // ContactUtil -} // contact -} // extension +} // namespace ContactUtil +} // namespace contact +} // namespace extension #endif // CONTACT_CONTACT_UTIL_H_ diff --git a/src/contact/person.h b/src/contact/person.h index d71b2edb..8a0c5999 100755 --- a/src/contact/person.h +++ b/src/contact/person.h @@ -45,8 +45,8 @@ common::PlatformResult PersonPropertyFromString(const std::string& name, common::PlatformResult PersonLink(const JsonObject& args, JsonObject&); common::PlatformResult PersonUnlink(const JsonObject& args, JsonObject&); -} // Person -} // contact -} // extension +} // namespace Person +} // namespace contact +} // namespace extension #endif // CONTACT_PERSON_H diff --git a/src/content/content_filter.h b/src/content/content_filter.h index 27ea7d3c..0109726b 100755 --- a/src/content/content_filter.h +++ b/src/content/content_filter.h @@ -37,7 +37,8 @@ class ContentFilter { private: common::FilterVisitor visitor; }; -} -} + +} // namespace content +} // namespace extension #endif diff --git a/src/content/content_manager.h b/src/content/content_manager.h index 543c0fea..b39fcbfd 100755 --- a/src/content/content_manager.h +++ b/src/content/content_manager.h @@ -83,8 +83,8 @@ class ContentManager { }; -} // namespace power -} // namespace extension +} // namespace content +} // namespace extension #endif diff --git a/src/filesystem/filesystem_utils.h b/src/filesystem/filesystem_utils.h index 3522c59c..7c8762e7 100755 --- a/src/filesystem/filesystem_utils.h +++ b/src/filesystem/filesystem_utils.h @@ -48,6 +48,7 @@ std::string get_storage_dir_path(int id, storage_directory_e typeToCheck); std::string get_dirname(const std::string& path); std::string get_basename(const std::string& path); -} + +} // namespace FilesystemUtils #endif // FILESYSTEM_FILESYSTEM_UTILS_H diff --git a/src/messaging/DBus/Connection.h b/src/messaging/DBus/Connection.h index 07084e32..5be2a21d 100644 --- a/src/messaging/DBus/Connection.h +++ b/src/messaging/DBus/Connection.h @@ -42,8 +42,8 @@ private: GError* m_error; }; -} //namespace DBus -} //namespace Messaging -} //namespace DeviceAPI +} // namespace DBus +} // namespace messaging +} // namespace extension #endif diff --git a/src/messaging/DBus/EmailSignalProxy.h b/src/messaging/DBus/EmailSignalProxy.h index 9791f4b3..48e81e63 100644 --- a/src/messaging/DBus/EmailSignalProxy.h +++ b/src/messaging/DBus/EmailSignalProxy.h @@ -58,8 +58,8 @@ protected: private: }; -} //namespace DBus -} //namespace Messaging -} //namespace DeviceAPI +} // namespace DBus +} // namespace messaging +} // namespace extension #endif // __TIZEN_DBUS_EMAIL_SIGNAL_PROXY_H__ diff --git a/src/messaging/DBus/Proxy.h b/src/messaging/DBus/Proxy.h index 81622511..05aeda61 100644 --- a/src/messaging/DBus/Proxy.h +++ b/src/messaging/DBus/Proxy.h @@ -121,8 +121,8 @@ private: bool m_dbus_signal_subscribed; }; -} //namespace DBus -} //namespace Messaging -} //namespace DeviceAPI +} // namespace DBus +} // namespace messaging +} // namespace extension #endif // __TIZEN_DBUS_PROXY_H__ diff --git a/src/messaging/DBus/SendProxy.h b/src/messaging/DBus/SendProxy.h index ef7d5ef5..4f761db0 100644 --- a/src/messaging/DBus/SendProxy.h +++ b/src/messaging/DBus/SendProxy.h @@ -41,9 +41,9 @@ protected: const int error_code); }; -} //DBus -} //messaging -} //extension +} // namespace DBus +} // namespace messaging +} // namespace extension #endif /* __TIZEN_SEND_PROXY_H */ diff --git a/src/messaging/DBus/SyncProxy.h b/src/messaging/DBus/SyncProxy.h index bd7f3794..aa97ba4d 100644 --- a/src/messaging/DBus/SyncProxy.h +++ b/src/messaging/DBus/SyncProxy.h @@ -68,8 +68,8 @@ private: CallbackMap m_callback_map; }; -} //namespace DBus -} //namespace Messaging -} //namespace DeviceAPI +} //namespace DBus +} //namespace messaging +} //namespace extension #endif // __TIZEN_DBUS_SYNC_PROXY_H__ diff --git a/src/messaging/MsgCommon/AbstractFilter.h b/src/messaging/MsgCommon/AbstractFilter.h index 0ac41e4d..8fad98ed 100755 --- a/src/messaging/MsgCommon/AbstractFilter.h +++ b/src/messaging/MsgCommon/AbstractFilter.h @@ -148,8 +148,8 @@ public: } }; -} // Tizen -} // DeviceAPI +} // namespace tizen +} // namespace extension #include "AttributeFilter.h" diff --git a/src/messaging/MsgCommon/Any.h b/src/messaging/MsgCommon/Any.h index 009ae783..dd7e1a5c 100755 --- a/src/messaging/MsgCommon/Any.h +++ b/src/messaging/MsgCommon/Any.h @@ -70,7 +70,7 @@ private: picojson::value m_value; }; -} // Tizen -} // DeviceAPI +} // namespace tizen +} // namespace extension #endif // __TIZEN_TIZEN_ANY_H__ diff --git a/src/messaging/MsgCommon/AttributeFilter.h b/src/messaging/MsgCommon/AttributeFilter.h index b14ccbe4..71d0b6cc 100755 --- a/src/messaging/MsgCommon/AttributeFilter.h +++ b/src/messaging/MsgCommon/AttributeFilter.h @@ -46,7 +46,7 @@ private: AnyPtr m_match_value; }; -} // Tizen -} // DeviceAPI +} // namespace tizen +} // namespace extension #endif // __TIZEN_TIZEN_ABSTRACT_FILTER_H__ diff --git a/src/messaging/MsgCommon/AttributeRangeFilter.h b/src/messaging/MsgCommon/AttributeRangeFilter.h index 4c0d8e1e..aaf9e544 100755 --- a/src/messaging/MsgCommon/AttributeRangeFilter.h +++ b/src/messaging/MsgCommon/AttributeRangeFilter.h @@ -48,7 +48,7 @@ private: AnyPtr m_end_value; }; -} // Tizen -} // DeviceAPI +} // namespace tizen +} // namespace extension #endif // __TIZEN_TIZEN_ATTRIBUTE_RANGE_FILTER_H__ diff --git a/src/messaging/MsgCommon/CompositeFilter.h b/src/messaging/MsgCommon/CompositeFilter.h index e6d2c328..4bc06070 100755 --- a/src/messaging/MsgCommon/CompositeFilter.h +++ b/src/messaging/MsgCommon/CompositeFilter.h @@ -46,7 +46,7 @@ private: AbstractFilterPtrVector m_filters; }; -} //Tizen -} //DeviceAPI +} // namespace tizen +} // namespace extension #endif // __TIZEN_TIZEN_COMPOSITE_FILTER_H__ diff --git a/src/messaging/MsgCommon/FilterIterator.h b/src/messaging/MsgCommon/FilterIterator.h index b3f625a2..7a590837 100755 --- a/src/messaging/MsgCommon/FilterIterator.h +++ b/src/messaging/MsgCommon/FilterIterator.h @@ -96,7 +96,7 @@ private: std::stack m_composite_stack; }; -} // Tizen -} // DeviceAPI +} // namespace tizen +} // namespace extension #endif // __TIZEN_TIZEN_FILTER_ITERATOR_H__ diff --git a/src/messaging/MsgCommon/SortMode.h b/src/messaging/MsgCommon/SortMode.h index d9491b18..f9dc6072 100755 --- a/src/messaging/MsgCommon/SortMode.h +++ b/src/messaging/MsgCommon/SortMode.h @@ -46,7 +46,7 @@ private: SortModeOrder m_order; }; -} // Tizen -} // DeviceAPI +} // namespace tizen +} // namespace extension #endif // __TIZEN_TIZEN_SORT_MODE_H__ diff --git a/src/messaging/conversation_callback_data.h b/src/messaging/conversation_callback_data.h index 17cb5df7..43cb5631 100755 --- a/src/messaging/conversation_callback_data.h +++ b/src/messaging/conversation_callback_data.h @@ -79,7 +79,7 @@ private: PostQueue& queue_; }; -}//messaging -}//extension +} // namespace messaging +} // namespace extension #endif // MESSAGING_CONVERSATION_CALLBACK_DATA_H_ diff --git a/src/messaging/conversations_change_callback.h b/src/messaging/conversations_change_callback.h index 34d389a3..36e0fd11 100755 --- a/src/messaging/conversations_change_callback.h +++ b/src/messaging/conversations_change_callback.h @@ -67,8 +67,8 @@ private: }; -} //messaging -} //extension +} // namespace messaging +} // namespace extension diff --git a/src/messaging/email_manager.h b/src/messaging/email_manager.h index 73b4c4a2..0f745e62 100755 --- a/src/messaging/email_manager.h +++ b/src/messaging/email_manager.h @@ -142,6 +142,6 @@ private: bool m_is_initialized; }; -} // Messaging -} // DeviceAPI +} // namespace messaging +} // namespace extension #endif // __TIZEN_EMAIL_MANAGER_H__ diff --git a/src/messaging/find_msg_callback_user_data.h b/src/messaging/find_msg_callback_user_data.h index 48e6067d..a2a0f0bf 100755 --- a/src/messaging/find_msg_callback_user_data.h +++ b/src/messaging/find_msg_callback_user_data.h @@ -81,7 +81,7 @@ private: PostQueue& queue_; }; -}//Messaging -}//DeviceAPI +} // namespace messaging +} // namespace extension #endif /* __TIZEN_FIND_MSG_CALLBACK_USER_DATA_H */ diff --git a/src/messaging/folders_callback_data.h b/src/messaging/folders_callback_data.h index 0fcfcd97..7e8b2223 100755 --- a/src/messaging/folders_callback_data.h +++ b/src/messaging/folders_callback_data.h @@ -64,7 +64,7 @@ private: }; -}//messaging -}//extension +} // namespace messaging +} // namespace extension #endif /* __TIZEN_FOLDERS_CALLBACK_DATA_H__ */ diff --git a/src/messaging/folders_change_callback.h b/src/messaging/folders_change_callback.h index 69d3d14e..088db8cf 100755 --- a/src/messaging/folders_change_callback.h +++ b/src/messaging/folders_change_callback.h @@ -71,7 +71,7 @@ private: FolderPtrVector m_items; }; -} //messaging -} //extension +} // namespace messaging +} // namespace extension #endif // __MESSAGING_FOLDERS_CHANGE_CALLBACK_H__ diff --git a/src/messaging/message.h b/src/messaging/message.h index cad0f287..95025e96 100755 --- a/src/messaging/message.h +++ b/src/messaging/message.h @@ -233,8 +233,8 @@ private: char delimiter); }; -} //messaging -} //extension +} // namespace messaging +} // namespace extension #endif /* MESSAGING_MESSAGE_H_ */ diff --git a/src/messaging/message_attachment.h b/src/messaging/message_attachment.h index 77e44b10..df914457 100755 --- a/src/messaging/message_attachment.h +++ b/src/messaging/message_attachment.h @@ -86,7 +86,7 @@ public: void updateWithAttachmentData(const email_attachment_data_t& attachment_data); }; -} // messaging -} // extension +} // namespace messaging +} // namespace extension #endif // MESSAGING_MESSAGE_ATTACHMENT_H_ diff --git a/src/messaging/message_body.h b/src/messaging/message_body.h index 1e8164a5..b0c3f9e1 100755 --- a/src/messaging/message_body.h +++ b/src/messaging/message_body.h @@ -65,7 +65,7 @@ private: AttachmentPtrVector m_inlineAttachments; }; -} // messaging -} // extension +} // namespace messaging +} // namespace extension #endif // MESSAGING_MESSAGE_BODY_H_ diff --git a/src/messaging/message_callback_user_data.h b/src/messaging/message_callback_user_data.h index d6afe5cd..dde99f91 100755 --- a/src/messaging/message_callback_user_data.h +++ b/src/messaging/message_callback_user_data.h @@ -59,8 +59,8 @@ private: }; -}//messaging -}//extension +} // namespace messaging +} // namespace extension #endif /* MESSAGING_MESSAGE_CALLBACK_USER_DATA_H_ */ diff --git a/src/messaging/message_conversation.h b/src/messaging/message_conversation.h index f4934bb2..3d214b33 100755 --- a/src/messaging/message_conversation.h +++ b/src/messaging/message_conversation.h @@ -112,7 +112,7 @@ private: int m_last_message_id; }; -} //messaging -} //extension +} // namespace messaging +} // namespace extension #endif // __TIZEN_MESSAGE_CONVERSATION_H__ diff --git a/src/messaging/message_email.h b/src/messaging/message_email.h index 0ca9f6a4..8772d509 100755 --- a/src/messaging/message_email.h +++ b/src/messaging/message_email.h @@ -48,7 +48,7 @@ private: bool isValidRecpientsVector(std::vector &recipients); }; -} // messaging -} // extension +} // namespace messaging +} // namespace extension #endif // MESSAGING_MESSAGE_EMAIL_H_ diff --git a/src/messaging/message_mms.h b/src/messaging/message_mms.h index cb25250d..2e78bbb0 100755 --- a/src/messaging/message_mms.h +++ b/src/messaging/message_mms.h @@ -41,7 +41,7 @@ public: bool getHasAttachment() const; }; -} // messaging -} // extension +} // namespace messaging +} // namespace extension #endif // __TIZEN_MESSAGE_MMS_H__ diff --git a/src/messaging/message_service.h b/src/messaging/message_service.h index 89523627..4584e8fa 100755 --- a/src/messaging/message_service.h +++ b/src/messaging/message_service.h @@ -218,6 +218,6 @@ protected: MessageStoragePtr m_storage; }; -} // messaging -} // extension +} // namespace messaging +} // namespace extension #endif // MESSAGING_MESSAGE_SERVICE_EMAIL_H_ diff --git a/src/messaging/message_sms.h b/src/messaging/message_sms.h index 5b252ffd..b946440a 100755 --- a/src/messaging/message_sms.h +++ b/src/messaging/message_sms.h @@ -33,7 +33,7 @@ public: }; -} // messaging -} // extension +} // namespace messaging +} // namespace extension #endif // __MESSAGING_MESSAGE_SMS_H__ diff --git a/src/messaging/message_storage.h b/src/messaging/message_storage.h index 6db19f1d..a974ebe9 100755 --- a/src/messaging/message_storage.h +++ b/src/messaging/message_storage.h @@ -70,8 +70,8 @@ protected: std::unordered_set registered_listeners_; }; -} //messaging -} //extension +} // namespace messaging +} // namespace extension #endif /* MESSAGING_MESSAGE_STORAGE_H_ */ diff --git a/src/messaging/message_storage_email.h b/src/messaging/message_storage_email.h index fe943e75..ea09c071 100755 --- a/src/messaging/message_storage_email.h +++ b/src/messaging/message_storage_email.h @@ -36,8 +36,8 @@ public: virtual void findFolders(FoldersCallbackData* callback); }; -} //messaging -} //extension +} // namespace messaging +} // namespace extension #endif /* MESSAGING_MESSAGE_STORAGE_EMAIL_H_ */ diff --git a/src/messaging/messaging_util.h b/src/messaging/messaging_util.h index c1fe5a5b..a4b63776 100755 --- a/src/messaging/messaging_util.h +++ b/src/messaging/messaging_util.h @@ -239,6 +239,6 @@ private: }; }; -} // messaging -} // extension +} // namespace messaging +} // namespace extension #endif // MESSAGING_MESSAGING_UTIL_H_ diff --git a/src/nfc/aid_data.h b/src/nfc/aid_data.h index 14774c32..0af8123e 100644 --- a/src/nfc/aid_data.h +++ b/src/nfc/aid_data.h @@ -39,7 +39,7 @@ class AIDData { typedef std::vector AIDDataVector; -} // nfc -} // extension +} // namespace nfc +} // namespace extension #endif // NFC_AID_DATA_H_ diff --git a/src/nfc/nfc_adapter.h b/src/nfc/nfc_adapter.h index 7c95d1ce..e392bc06 100644 --- a/src/nfc/nfc_adapter.h +++ b/src/nfc/nfc_adapter.h @@ -150,7 +150,7 @@ class NFCAdapter { IResponder* responder_; }; -} // nfc -} // extension +} // namespace nfc +} // namespace extension #endif // NFC_NFC_ADAPTER_H_ diff --git a/src/nfc/nfc_message_utils.h b/src/nfc/nfc_message_utils.h index 7bd5eb44..119f5319 100644 --- a/src/nfc/nfc_message_utils.h +++ b/src/nfc/nfc_message_utils.h @@ -58,7 +58,7 @@ class NFCMessageUtils static void RemoveMessageHandle(nfc_ndef_message_h message_handle); }; -} // nfc -} // extension +} // namespace nfc +} // namespace extension #endif // __TIZEN_NFC_NFC_MESSAGE_UTILS_H_ diff --git a/src/nfc/nfc_util.h b/src/nfc/nfc_util.h index 78b3784e..e8151013 100644 --- a/src/nfc/nfc_util.h +++ b/src/nfc/nfc_util.h @@ -53,7 +53,7 @@ const std::string INVALID_VALUES_ERROR_NAME_STR = "InvalidValuesError"; const std::string TIMEOUT_ERROR_NAME_STR = "TimeoutError"; const std::string SERVICE_NOT_AVAILABLE_ERROR_NAME_STR = "ServiceNotAvailableError"; const std::string NOT_SUPPORTED_ERROR_NAME_STR = "NotSupportedError"; -} +} // namespace typedef std::vector UCharVector; @@ -84,7 +84,7 @@ class NFCUtil static picojson::array FromUCharArray(unsigned char* array, unsigned int apdu_len); }; -} // nfc -} // extension +} // namespace nfc +} // namespace extension #endif // __TIZEN_NFC_NFCUTIL_H_ diff --git a/src/secureelement/secureelement_channel.h b/src/secureelement/secureelement_channel.h index 4d626435..af81110b 100644 --- a/src/secureelement/secureelement_channel.h +++ b/src/secureelement/secureelement_channel.h @@ -34,7 +34,7 @@ private: smartcard_service_api::ClientChannel* m_channel_ptr; }; -} // secureelement -} // extension +} // namespace secureelement +} // namespace extension #endif // SECUREELEMENT_CHANNEL_H_ diff --git a/src/secureelement/secureelement_reader.h b/src/secureelement/secureelement_reader.h index fc2d7775..85a2b47d 100644 --- a/src/secureelement/secureelement_reader.h +++ b/src/secureelement/secureelement_reader.h @@ -36,7 +36,7 @@ private: smartcard_service_api::Reader* m_reader; }; -} // secureelement -} // extension +} // namespace secureelement +} // namespace extension #endif // SECUREELEMENT_READER_H_ diff --git a/src/secureelement/secureelement_seservice.h b/src/secureelement/secureelement_seservice.h index 5ac40675..495e8135 100644 --- a/src/secureelement/secureelement_seservice.h +++ b/src/secureelement/secureelement_seservice.h @@ -50,7 +50,7 @@ class SEService { SecureElementInstance& instance_; }; -} // secureelement -} // extension +} // namespace secureelement +} // namespace extension #endif // SECUREELEMENT_SESERVICE_H_ diff --git a/src/secureelement/secureelement_session.h b/src/secureelement/secureelement_session.h index 08fddbc7..2e1659fb 100644 --- a/src/secureelement/secureelement_session.h +++ b/src/secureelement/secureelement_session.h @@ -39,7 +39,7 @@ private: void* m_user_data; }; -} // secureelement -} // extension +} // namespace secureelement +} // namespace extension #endif // SECUREELEMENT_SESSION_H_ diff --git a/src/systeminfo/systeminfo-utils.h b/src/systeminfo/systeminfo-utils.h index 73f657ea..fe8e6459 100644 --- a/src/systeminfo/systeminfo-utils.h +++ b/src/systeminfo/systeminfo-utils.h @@ -127,6 +127,6 @@ class SystemInfoDeviceCapability { }; } // namespace systeminfo -} // namespace webapi +} // namespace extension #endif // WEBAPI_PLUGINS_SYSTEMINFO_SYSTEMINFO_UTILS_H__