summaryrefslogtreecommitdiffstats
path: root/extensions/shell/browser/shell_extension_web_contents_observer.cc
blob: 9dc369103dd267de590f3a2c2bcd30385d6ab870 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// 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 "extensions/shell/browser/shell_extension_web_contents_observer.h"

DEFINE_WEB_CONTENTS_USER_DATA_KEY(
    extensions::ShellExtensionWebContentsObserver);

namespace extensions {

ShellExtensionWebContentsObserver::ShellExtensionWebContentsObserver(
    content::WebContents* web_contents)
    : ExtensionWebContentsObserver(web_contents) {
}

ShellExtensionWebContentsObserver::~ShellExtensionWebContentsObserver() {
}

}  // namespace extensions