blob: 0948c35f91c97fad7437b48d6b4fb76a05e49bc0 [file] [log] [blame]
// Copyright (c) 2011 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/browser/chromeos/prerender_condition_network.h"
#include "chromeos/network/network_state.h"
#include "chromeos/network/network_state_handler.h"
#include "third_party/cros_system_api/dbus/service_constants.h"
namespace chromeos {
PrerenderConditionNetwork::PrerenderConditionNetwork() {
}
PrerenderConditionNetwork::~PrerenderConditionNetwork() {
}
bool PrerenderConditionNetwork::CanPrerender() const {
const NetworkState* default_network =
NetworkHandler::Get()->network_state_handler()->DefaultNetwork();
if (!default_network)
return false;
const std::string& type = default_network->type();
if (type == flimflam::kTypeEthernet || type == flimflam::kTypeWifi)
return true;
return false;
}
} // namespace chromeos