1// Copyright 2013 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#ifndef CHROME_BROWSER_EXTENSIONS_DEVTOOLS_UTIL_H_
6#define CHROME_BROWSER_EXTENSIONS_DEVTOOLS_UTIL_H_
7
8class Profile;
9
10namespace extensions {
11class Extension;
12
13namespace devtools_util {
14
15// Open a dev tools window for the background page for the given extension,
16// starting the background page first if necessary.
17void InspectBackgroundPage(const Extension* extension, Profile* profile);
18
19}  // namespace devtools_util
20}  // namespace extensions
21
22#endif  // CHROME_BROWSER_EXTENSIONS_DEVTOOLS_UTIL_H_
23