diff options
Diffstat (limited to 'chrome/browser/dom_ui/debugger_ui.h')
-rw-r--r-- | chrome/browser/dom_ui/debugger_ui.h | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/chrome/browser/dom_ui/debugger_ui.h b/chrome/browser/dom_ui/debugger_ui.h new file mode 100644 index 0000000..3b12ec9 --- /dev/null +++ b/chrome/browser/dom_ui/debugger_ui.h @@ -0,0 +1,28 @@ +// Copyright (c) 2006-2008 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. +// +// This file defines utility functions for working with strings. + +#ifndef CHROME_BROWSER_DOM_UI_DEBUGGER_UI_H_ +#define CHROME_BROWSER_DOM_UI_DEBUGGER_UI_H_ + +#include "chrome/browser/dom_ui/dom_ui.h" + +class DebuggerUI : public DOMUI { + public: + DebuggerUI(DOMUIContents* contents); + + // DOMUI Implementation + virtual void Init(); + + // Return the URL for the front page of this UI. + static GURL GetBaseURL(); + + static bool IsDebuggerUrl(const GURL& url); + + private: + DISALLOW_COPY_AND_ASSIGN(DebuggerUI); +}; + +#endif // CHROME_BROWSER_DOM_UI_DEBUGGER_UI_H_ |