#ifndef COMPONENTS_SERVICES_APP_SERVICE_PUBLIC_CPP_URL_HANDLER_INFO_H_
#define COMPONENTS_SERVICES_APP_SERVICE_PUBLIC_CPP_URL_HANDLER_INFO_H_
#include <string>
#include <vector>
#include "base/compiler_specific.h"
#include "base/values.h"
#include "url/origin.h"
namespace apps {
struct UrlHandlerInfo { … };
UrlHandlers;
bool operator==(const UrlHandlerInfo& url_handler1,
const UrlHandlerInfo& url_handler2);
bool operator!=(const UrlHandlerInfo& url_handler1,
const UrlHandlerInfo& url_handler2);
bool operator<(const UrlHandlerInfo& url_handler1,
const UrlHandlerInfo& url_handler2);
}
#endif