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 <string> | 8 #include <string> |
9 #include <vector> | 9 #include <vector> |
10 | 10 |
11 #include "base/basictypes.h" | 11 #include "base/basictypes.h" |
12 #include "base/memory/scoped_ptr.h" | 12 #include "base/memory/scoped_ptr.h" |
13 #include "base/memory/weak_ptr.h" | 13 #include "base/memory/weak_ptr.h" |
14 #include "base/string16.h" | 14 #include "base/strings/string16.h" |
15 #include "chrome/browser/devtools/devtools_file_helper.h" | 15 #include "chrome/browser/devtools/devtools_file_helper.h" |
16 #include "chrome/browser/devtools/devtools_toggle_action.h" | 16 #include "chrome/browser/devtools/devtools_toggle_action.h" |
17 #include "content/public/browser/devtools_client_host.h" | 17 #include "content/public/browser/devtools_client_host.h" |
18 #include "content/public/browser/devtools_frontend_host_delegate.h" | 18 #include "content/public/browser/devtools_frontend_host_delegate.h" |
19 #include "content/public/browser/notification_observer.h" | 19 #include "content/public/browser/notification_observer.h" |
20 #include "content/public/browser/notification_registrar.h" | 20 #include "content/public/browser/notification_registrar.h" |
21 #include "content/public/browser/web_contents_delegate.h" | 21 #include "content/public/browser/web_contents_delegate.h" |
22 | 22 |
23 class Browser; | 23 class Browser; |
24 class BrowserWindow; | 24 class BrowserWindow; |
(...skipping 216 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
241 scoped_ptr<content::DevToolsClientHost> frontend_host_; | 241 scoped_ptr<content::DevToolsClientHost> frontend_host_; |
242 base::WeakPtrFactory<DevToolsWindow> weak_factory_; | 242 base::WeakPtrFactory<DevToolsWindow> weak_factory_; |
243 scoped_ptr<DevToolsFileHelper> file_helper_; | 243 scoped_ptr<DevToolsFileHelper> file_helper_; |
244 int width_; | 244 int width_; |
245 int height_; | 245 int height_; |
246 DevToolsDockSide dock_side_before_minimized_; | 246 DevToolsDockSide dock_side_before_minimized_; |
247 DISALLOW_COPY_AND_ASSIGN(DevToolsWindow); | 247 DISALLOW_COPY_AND_ASSIGN(DevToolsWindow); |
248 }; | 248 }; |
249 | 249 |
250 #endif // CHROME_BROWSER_DEVTOOLS_DEVTOOLS_WINDOW_H_ | 250 #endif // CHROME_BROWSER_DEVTOOLS_DEVTOOLS_WINDOW_H_ |
OLD | NEW |