Home | History | Annotate | Download | only in android
      1 // Copyright (c) 2012 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.
      4 
      5 #include "chrome/browser/external_protocol/external_protocol_handler.h"
      6 
      7 #include "base/logging.h"
      8 
      9 // static
     10 void ExternalProtocolHandler::RunExternalProtocolDialog(
     11     const GURL& url, int render_process_host_id, int routing_id) {
     12   // Chrome on Android uses a throttle-based mechansim to intercept links
     13   // so that the user may choose to run an Android application instead of
     14   // loading the link in the browser. The throttle is also used to handle
     15   // external protocols, so this code should not be reachable.
     16   NOTREACHED();
     17 }
     18