summaryrefslogtreecommitdiffstats
path: root/chrome/browser/external_protocol/external_protocol_observer.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/browser/external_protocol/external_protocol_observer.cc')
-rw-r--r--chrome/browser/external_protocol/external_protocol_observer.cc22
1 files changed, 0 insertions, 22 deletions
diff --git a/chrome/browser/external_protocol/external_protocol_observer.cc b/chrome/browser/external_protocol/external_protocol_observer.cc
deleted file mode 100644
index 8f69517..0000000
--- a/chrome/browser/external_protocol/external_protocol_observer.cc
+++ /dev/null
@@ -1,22 +0,0 @@
-// Copyright 2014 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/external_protocol/external_protocol_observer.h"
-
-#include "chrome/browser/external_protocol/external_protocol_handler.h"
-
-using content::WebContents;
-
-DEFINE_WEB_CONTENTS_USER_DATA_KEY(ExternalProtocolObserver);
-
-ExternalProtocolObserver::ExternalProtocolObserver(WebContents* web_contents)
- : content::WebContentsObserver(web_contents) {
-}
-
-ExternalProtocolObserver::~ExternalProtocolObserver() {
-}
-
-void ExternalProtocolObserver::DidGetUserGesture() {
- ExternalProtocolHandler::PermitLaunchUrl();
-}