| 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_DEVTOOLS_DEVTOOLS_WINDOW_H_ | 5 #ifndef CHROME_BROWSER_DEVTOOLS_DEVTOOLS_WINDOW_H_ | 
| 6 #define CHROME_BROWSER_DEVTOOLS_DEVTOOLS_WINDOW_H_ | 6 #define CHROME_BROWSER_DEVTOOLS_DEVTOOLS_WINDOW_H_ | 
| 7 | 7 | 
|  | 8 #include "base/macros.h" | 
| 8 #include "chrome/browser/devtools/devtools_contents_resizing_strategy.h" | 9 #include "chrome/browser/devtools/devtools_contents_resizing_strategy.h" | 
| 9 #include "chrome/browser/devtools/devtools_toggle_action.h" | 10 #include "chrome/browser/devtools/devtools_toggle_action.h" | 
| 10 #include "chrome/browser/devtools/devtools_ui_bindings.h" | 11 #include "chrome/browser/devtools/devtools_ui_bindings.h" | 
| 11 #include "content/public/browser/web_contents_delegate.h" | 12 #include "content/public/browser/web_contents_delegate.h" | 
| 12 #include "content/public/browser/web_contents_observer.h" | 13 #include "content/public/browser/web_contents_observer.h" | 
| 13 | 14 | 
| 14 class Browser; | 15 class Browser; | 
| 15 class BrowserWindow; | 16 class BrowserWindow; | 
| 16 class DevToolsWindowTesting; | 17 class DevToolsWindowTesting; | 
| 17 class DevToolsEventForwarder; | 18 class DevToolsEventForwarder; | 
| (...skipping 320 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 338   base::Closure close_callback_; | 339   base::Closure close_callback_; | 
| 339 | 340 | 
| 340   base::TimeTicks inspect_element_start_time_; | 341   base::TimeTicks inspect_element_start_time_; | 
| 341   scoped_ptr<DevToolsEventForwarder> event_forwarder_; | 342   scoped_ptr<DevToolsEventForwarder> event_forwarder_; | 
| 342 | 343 | 
| 343   friend class DevToolsEventForwarder; | 344   friend class DevToolsEventForwarder; | 
| 344   DISALLOW_COPY_AND_ASSIGN(DevToolsWindow); | 345   DISALLOW_COPY_AND_ASSIGN(DevToolsWindow); | 
| 345 }; | 346 }; | 
| 346 | 347 | 
| 347 #endif  // CHROME_BROWSER_DEVTOOLS_DEVTOOLS_WINDOW_H_ | 348 #endif  // CHROME_BROWSER_DEVTOOLS_DEVTOOLS_WINDOW_H_ | 
| OLD | NEW | 
|---|