| 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 |
| (...skipping 350 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 361 friend class FrontendWebContentsObserver; | 361 friend class FrontendWebContentsObserver; |
| 362 scoped_ptr<FrontendWebContentsObserver> frontend_contents_observer_; | 362 scoped_ptr<FrontendWebContentsObserver> frontend_contents_observer_; |
| 363 | 363 |
| 364 Profile* profile_; | 364 Profile* profile_; |
| 365 content::WebContents* web_contents_; | 365 content::WebContents* web_contents_; |
| 366 Browser* browser_; | 366 Browser* browser_; |
| 367 bool is_docked_; | 367 bool is_docked_; |
| 368 bool can_dock_; | 368 bool can_dock_; |
| 369 LoadState load_state_; | 369 LoadState load_state_; |
| 370 DevToolsToggleAction action_on_load_; | 370 DevToolsToggleAction action_on_load_; |
| 371 bool ignore_set_is_docked_for_test_; | 371 bool ignore_set_is_docked_; |
| 372 content::NotificationRegistrar registrar_; | 372 content::NotificationRegistrar registrar_; |
| 373 scoped_ptr<content::DevToolsClientHost> frontend_host_; | 373 scoped_ptr<content::DevToolsClientHost> frontend_host_; |
| 374 scoped_ptr<DevToolsFileHelper> file_helper_; | 374 scoped_ptr<DevToolsFileHelper> file_helper_; |
| 375 scoped_refptr<DevToolsFileSystemIndexer> file_system_indexer_; | 375 scoped_refptr<DevToolsFileSystemIndexer> file_system_indexer_; |
| 376 typedef std::map< | 376 typedef std::map< |
| 377 int, | 377 int, |
| 378 scoped_refptr<DevToolsFileSystemIndexer::FileSystemIndexingJob> > | 378 scoped_refptr<DevToolsFileSystemIndexer::FileSystemIndexingJob> > |
| 379 IndexingJobsMap; | 379 IndexingJobsMap; |
| 380 IndexingJobsMap indexing_jobs_; | 380 IndexingJobsMap indexing_jobs_; |
| 381 gfx::Insets contents_insets_; | 381 gfx::Insets contents_insets_; |
| 382 // True if we're in the process of handling a beforeunload event originating | 382 // True if we're in the process of handling a beforeunload event originating |
| 383 // from the inspected webcontents, see InterceptPageBeforeUnload for details. | 383 // from the inspected webcontents, see InterceptPageBeforeUnload for details. |
| 384 bool intercepted_page_beforeunload_; | 384 bool intercepted_page_beforeunload_; |
| 385 | 385 |
| 386 scoped_ptr<DevToolsEmbedderMessageDispatcher> embedder_message_dispatcher_; | 386 scoped_ptr<DevToolsEmbedderMessageDispatcher> embedder_message_dispatcher_; |
| 387 base::WeakPtrFactory<DevToolsWindow> weak_factory_; | 387 base::WeakPtrFactory<DevToolsWindow> weak_factory_; |
| 388 DISALLOW_COPY_AND_ASSIGN(DevToolsWindow); | 388 DISALLOW_COPY_AND_ASSIGN(DevToolsWindow); |
| 389 }; | 389 }; |
| 390 | 390 |
| 391 #endif // CHROME_BROWSER_DEVTOOLS_DEVTOOLS_WINDOW_H_ | 391 #endif // CHROME_BROWSER_DEVTOOLS_DEVTOOLS_WINDOW_H_ |
| OLD | NEW |