Use the host instead of the title for streamlined hosted apps.
[chromium-blink-merge.git] / components / gcm_driver / gcm_app_handler.cc
blobed00cbe1e3ffebf9ccb03f67cb34a313cd853d57
1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #include "components/gcm_driver/gcm_app_handler.h"
7 namespace gcm {
9 GCMAppHandler::GCMAppHandler() {}
10 GCMAppHandler::~GCMAppHandler() {}
12 void GCMAppHandler::OnConnected(const net::IPEndPoint& ip_endpoint) {
15 void GCMAppHandler::OnDisconnected() {
18 bool GCMAppHandler::CanHandle(const std::string& app_id) const {
19 return false;
22 } // namespace gcm