Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1146)

Unified Diff: chrome/browser/debugger/devtools_window.h

Issue 7274031: Wholesale move of debugger sources to content. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Add OWNERS and DEPS. Created 9 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/debugger/devtools_window.h
diff --git a/chrome/browser/debugger/devtools_window.h b/chrome/browser/debugger/devtools_window.h
deleted file mode 100644
index 23c724b14cf58ce64bb7de177530c8328acf9268..0000000000000000000000000000000000000000
--- a/chrome/browser/debugger/devtools_window.h
+++ /dev/null
@@ -1,110 +0,0 @@
-// Copyright (c) 2011 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.
-
-#ifndef CHROME_BROWSER_DEBUGGER_DEVTOOLS_WINDOW_H_
-#define CHROME_BROWSER_DEBUGGER_DEVTOOLS_WINDOW_H_
-#pragma once
-
-#include <string>
-
-#include "base/basictypes.h"
-#include "chrome/browser/debugger/devtools_client_host.h"
-#include "chrome/browser/debugger/devtools_toggle_action.h"
-#include "content/browser/tab_contents/tab_contents_delegate.h"
-#include "content/common/notification_observer.h"
-#include "content/common/notification_registrar.h"
-
-namespace IPC {
-class Message;
-}
-
-class Browser;
-class BrowserWindow;
-class Profile;
-class RenderViewHost;
-class Value;
-
-class DevToolsWindow
- : public DevToolsClientHost,
- public NotificationObserver,
- public TabContentsDelegate {
- public:
- static const char kDevToolsApp[];
- static TabContentsWrapper* GetDevToolsContents(TabContents* inspected_tab);
-
- DevToolsWindow(Profile* profile, RenderViewHost* inspected_rvh, bool docked);
- virtual ~DevToolsWindow();
-
- // Overridden from DevToolsClientHost.
- virtual DevToolsWindow* AsDevToolsWindow();
- virtual void SendMessageToClient(const IPC::Message& message);
- virtual void InspectedTabClosing();
- virtual void TabReplaced(TabContentsWrapper* new_tab);
-
- void Show(DevToolsToggleAction action);
- void Activate();
- void SetDocked(bool docked);
- RenderViewHost* GetRenderViewHost();
-
- TabContentsWrapper* tab_contents() { return tab_contents_; }
- Browser* browser() { return browser_; } // For tests.
- bool is_docked() { return docked_; }
-
- private:
- void CreateDevToolsBrowser();
- bool FindInspectedBrowserAndTabIndex(Browser**, int* tab);
- BrowserWindow* GetInspectedBrowserWindow();
- bool IsInspectedBrowserPopupOrPanel();
- void UpdateFrontendAttachedState();
-
- // Overridden from NotificationObserver.
- virtual void Observe(NotificationType type,
- const NotificationSource& source,
- const NotificationDetails& details);
-
- void ScheduleAction(DevToolsToggleAction action);
- void DoAction();
- GURL GetDevToolsUrl();
- void UpdateTheme();
- void AddDevToolsExtensionsToClient();
- void CallClientFunction(const string16& function_name,
- const Value& arg);
- // Overridden from TabContentsDelegate.
- virtual void OpenURLFromTab(TabContents* source,
- const GURL& url,
- const GURL& referrer,
- WindowOpenDisposition disposition,
- PageTransition::Type transition);
- virtual void NavigationStateChanged(const TabContents* source,
- unsigned changed_flags) {}
- virtual void AddNewContents(TabContents* source,
- TabContents* new_contents,
- WindowOpenDisposition disposition,
- const gfx::Rect& initial_pos,
- bool user_gesture);
- virtual void ActivateContents(TabContents* contents) {}
- virtual void DeactivateContents(TabContents* contents) {}
- virtual void LoadingStateChanged(TabContents* source) {}
- virtual void CloseContents(TabContents* source) {}
- virtual void MoveContents(TabContents* source, const gfx::Rect& pos) {}
- virtual bool CanReloadContents(TabContents* source) const;
- virtual void UpdateTargetURL(TabContents* source, const GURL& url) {}
- virtual bool PreHandleKeyboardEvent(const NativeWebKeyboardEvent& event,
- bool* is_keyboard_shortcut);
- virtual void HandleKeyboardEvent(const NativeWebKeyboardEvent& event);
-
- virtual void FrameNavigating(const std::string& url) {}
-
- Profile* profile_;
- TabContentsWrapper* inspected_tab_;
- TabContentsWrapper* tab_contents_;
- Browser* browser_;
- bool docked_;
- bool is_loaded_;
- DevToolsToggleAction action_on_load_;
- NotificationRegistrar registrar_;
- DISALLOW_COPY_AND_ASSIGN(DevToolsWindow);
-};
-
-#endif // CHROME_BROWSER_DEBUGGER_DEVTOOLS_WINDOW_H_

Powered by Google App Engine
This is Rietveld 408576698