Searched defs:app_mode_id (Results 1 - 2 of 2) sorted by relevance

/external/chromium_org/chrome/common/mac/
H A Dapp_mode_common.h146 std::string app_mode_id; // Required: v1.0 member in struct:app_mode::ChromeAppModeInfo
/external/chromium_org/chrome/browser/apps/app_shim/
H A Dapp_shim_handler_mac.cc42 AppShimHandler* GetForAppMode(const std::string& app_mode_id) const {
43 HandlerMap::const_iterator it = handlers_.find(app_mode_id);
50 bool SetForAppMode(const std::string& app_mode_id, AppShimHandler* handler) { argument
52 handlers_.insert(HandlerMap::value_type(app_mode_id, handler)).second :
53 handlers_.erase(app_mode_id) == 1;
125 void AppShimHandler::RegisterHandler(const std::string& app_mode_id, argument
128 AppShimHandlerRegistry::GetInstance()->SetForAppMode(app_mode_id, handler);
132 void AppShimHandler::RemoveHandler(const std::string& app_mode_id) { argument
133 AppShimHandlerRegistry::GetInstance()->SetForAppMode(app_mode_id, NULL);
137 AppShimHandler* AppShimHandler::GetForAppMode(const std::string& app_mode_id) { argument
[all...]

Completed in 653 milliseconds