| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef CHROME_BROWSER_DEBUGGER_DEVTOOLS_WINDOW_H_ | 5 #ifndef CHROME_BROWSER_DEBUGGER_DEVTOOLS_WINDOW_H_ |
| 6 #define CHROME_BROWSER_DEBUGGER_DEVTOOLS_WINDOW_H_ | 6 #define CHROME_BROWSER_DEBUGGER_DEVTOOLS_WINDOW_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <string> | 9 #include <string> |
| 10 #include <vector> | 10 #include <vector> |
| 11 | 11 |
| 12 #include "base/basictypes.h" | 12 #include "base/basictypes.h" |
| 13 #include "base/memory/scoped_ptr.h" | 13 #include "base/memory/scoped_ptr.h" |
| 14 #include "chrome/browser/debugger/devtools_file_helper.h" | 14 #include "chrome/browser/debugger/devtools_file_helper.h" |
| 15 #include "chrome/browser/debugger/devtools_toggle_action.h" | 15 #include "chrome/browser/debugger/devtools_toggle_action.h" |
| 16 #include "content/public/browser/devtools_client_host.h" | 16 #include "content/public/browser/devtools_client_host.h" |
| 17 #include "content/public/browser/devtools_frontend_host_delegate.h" | 17 #include "content/public/browser/devtools_frontend_host_delegate.h" |
| 18 #include "content/public/browser/notification_observer.h" | 18 #include "content/public/browser/notification_observer.h" |
| 19 #include "content/public/browser/notification_registrar.h" | 19 #include "content/public/browser/notification_registrar.h" |
| 20 #include "content/public/browser/web_contents_delegate.h" | 20 #include "content/public/browser/web_contents_delegate.h" |
| 21 | 21 |
| 22 namespace IPC { | 22 namespace IPC { |
| 23 class Message; | 23 class Message; |
| 24 } | 24 } |
| 25 | 25 |
| 26 class Browser; | 26 class Browser; |
| 27 class BrowserWindow; | 27 class BrowserWindow; |
| 28 class PrefService; | 28 class PrefService; |
| 29 class Profile; | 29 class Profile; |
| 30 class TabContentsWrapper; | 30 class TabContents; |
| 31 typedef TabContents TabContentsWrapper; |
| 31 | 32 |
| 32 namespace base { | 33 namespace base { |
| 33 class Value; | 34 class Value; |
| 34 } | 35 } |
| 35 | 36 |
| 36 namespace content { | 37 namespace content { |
| 37 class DevToolsAgentHost; | 38 class DevToolsAgentHost; |
| 38 class DevToolsClientHost; | 39 class DevToolsClientHost; |
| 39 class RenderViewHost; | 40 class RenderViewHost; |
| 40 class WebContents; | 41 class WebContents; |
| (...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 159 bool docked_; | 160 bool docked_; |
| 160 bool is_loaded_; | 161 bool is_loaded_; |
| 161 DevToolsToggleAction action_on_load_; | 162 DevToolsToggleAction action_on_load_; |
| 162 content::NotificationRegistrar registrar_; | 163 content::NotificationRegistrar registrar_; |
| 163 content::DevToolsClientHost* frontend_host_; | 164 content::DevToolsClientHost* frontend_host_; |
| 164 scoped_ptr<DevToolsFileHelper> file_helper_; | 165 scoped_ptr<DevToolsFileHelper> file_helper_; |
| 165 DISALLOW_COPY_AND_ASSIGN(DevToolsWindow); | 166 DISALLOW_COPY_AND_ASSIGN(DevToolsWindow); |
| 166 }; | 167 }; |
| 167 | 168 |
| 168 #endif // CHROME_BROWSER_DEBUGGER_DEVTOOLS_WINDOW_H_ | 169 #endif // CHROME_BROWSER_DEBUGGER_DEVTOOLS_WINDOW_H_ |
| OLD | NEW |