diff options
author | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-03-13 19:23:16 +0000 |
---|---|---|
committer | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-03-13 19:23:16 +0000 |
commit | fa2e32bada9bb65f8aa595569d2f41c02715bc63 (patch) | |
tree | 92d20f80bf4876a3ac16908bcdc87853fd7a7059 /chrome/browser/dom_ui/debugger_ui.h | |
parent | a946f334c5b243f7792e1f338d8cf1ca9413b24a (diff) | |
download | chromium_src-fa2e32bada9bb65f8aa595569d2f41c02715bc63.zip chromium_src-fa2e32bada9bb65f8aa595569d2f41c02715bc63.tar.gz chromium_src-fa2e32bada9bb65f8aa595569d2f41c02715bc63.tar.bz2 |
Rename DebuggerContents to DebuggerUI and move to the dom_ui folder.
Review URL: http://codereview.chromium.org/46036
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@11655 0039d316-1c4b-4281-b951-d872f2087c98
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_ |