OLD | NEW |
1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 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 #include "chrome/browser/tab_contents/web_contents.h" | 5 #include "chrome/browser/tab_contents/web_contents.h" |
6 | 6 |
7 #include "base/command_line.h" | 7 #include "base/command_line.h" |
8 #include "base/compiler_specific.h" | 8 #include "base/compiler_specific.h" |
9 #include "base/file_version_info.h" | 9 #include "base/file_version_info.h" |
10 #include "base/process_util.h" | 10 #include "base/process_util.h" |
11 #include "base/string_util.h" | 11 #include "base/string_util.h" |
12 #include "chrome/browser/autofill_manager.h" | 12 #include "chrome/browser/autofill_manager.h" |
13 #include "chrome/browser/bookmarks/bookmark_model.h" | 13 #include "chrome/browser/bookmarks/bookmark_model.h" |
14 #include "chrome/browser/browser.h" | 14 #include "chrome/browser/browser.h" |
15 #include "chrome/browser/character_encoding.h" | 15 #include "chrome/browser/character_encoding.h" |
| 16 #include "chrome/browser/debugger/devtools_manager.h" |
16 #include "chrome/browser/dom_operation_notification_details.h" | 17 #include "chrome/browser/dom_operation_notification_details.h" |
17 #include "chrome/browser/dom_ui/dom_ui.h" | 18 #include "chrome/browser/dom_ui/dom_ui.h" |
18 #include "chrome/browser/dom_ui/dom_ui_factory.h" | 19 #include "chrome/browser/dom_ui/dom_ui_factory.h" |
19 #include "chrome/browser/download/download_manager.h" | 20 #include "chrome/browser/download/download_manager.h" |
20 #include "chrome/browser/gears_integration.h" | 21 #include "chrome/browser/gears_integration.h" |
21 #include "chrome/browser/google_util.h" | 22 #include "chrome/browser/google_util.h" |
22 #include "chrome/browser/js_before_unload_handler.h" | 23 #include "chrome/browser/js_before_unload_handler.h" |
23 #include "chrome/browser/jsmessage_box_handler.h" | 24 #include "chrome/browser/jsmessage_box_handler.h" |
24 #include "chrome/browser/load_from_memory_cache_details.h" | 25 #include "chrome/browser/load_from_memory_cache_details.h" |
25 #include "chrome/browser/load_notification_details.h" | 26 #include "chrome/browser/load_notification_details.h" |
(...skipping 383 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
409 return std::wstring(); | 410 return std::wstring(); |
410 } | 411 } |
411 | 412 |
412 bool WebContents::NavigateToPendingEntry(bool reload) { | 413 bool WebContents::NavigateToPendingEntry(bool reload) { |
413 const NavigationEntry& entry = *controller()->GetPendingEntry(); | 414 const NavigationEntry& entry = *controller()->GetPendingEntry(); |
414 | 415 |
415 RenderViewHost* dest_render_view_host = render_manager_.Navigate(entry); | 416 RenderViewHost* dest_render_view_host = render_manager_.Navigate(entry); |
416 if (!dest_render_view_host) | 417 if (!dest_render_view_host) |
417 return false; // Unable to create the desired render view host. | 418 return false; // Unable to create the desired render view host. |
418 | 419 |
| 420 // Tell DevTools agent that it is attached prior to the navigation. |
| 421 DevToolsManager* dev_tools_manager = g_browser_process->devtools_manager(); |
| 422 if (dev_tools_manager) // NULL in unit tests. |
| 423 dev_tools_manager->SendAttachToAgent(*this, dest_render_view_host); |
| 424 |
419 // Used for page load time metrics. | 425 // Used for page load time metrics. |
420 current_load_start_ = TimeTicks::Now(); | 426 current_load_start_ = TimeTicks::Now(); |
421 | 427 |
422 // Navigate in the desired RenderViewHost. | 428 // Navigate in the desired RenderViewHost. |
423 dest_render_view_host->NavigateToEntry(entry, reload); | 429 dest_render_view_host->NavigateToEntry(entry, reload); |
424 | 430 |
425 if (entry.page_id() == -1) { | 431 if (entry.page_id() == -1) { |
426 // HACK!! This code suppresses javascript: URLs from being added to | 432 // HACK!! This code suppresses javascript: URLs from being added to |
427 // session history, which is what we want to do for javascript: URLs that | 433 // session history, which is what we want to do for javascript: URLs that |
428 // do not generate content. What we really need is a message from the | 434 // do not generate content. What we really need is a message from the |
(...skipping 1602 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2031 // -> Use pending DOM UI if any. | 2037 // -> Use pending DOM UI if any. |
2032 // | 2038 // |
2033 // - Normal state with no load: committed nav entry + no pending nav entry: | 2039 // - Normal state with no load: committed nav entry + no pending nav entry: |
2034 // -> Use committed DOM UI. | 2040 // -> Use committed DOM UI. |
2035 if (controller()->GetPendingEntry() && | 2041 if (controller()->GetPendingEntry() && |
2036 (controller()->GetLastCommittedEntry() || | 2042 (controller()->GetLastCommittedEntry() || |
2037 render_manager_.pending_dom_ui())) | 2043 render_manager_.pending_dom_ui())) |
2038 return render_manager_.pending_dom_ui(); | 2044 return render_manager_.pending_dom_ui(); |
2039 return render_manager_.dom_ui(); | 2045 return render_manager_.dom_ui(); |
2040 } | 2046 } |
OLD | NEW |