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 // Implements the Chrome Extensions WebNavigation API. | 5 // Implements the Chrome Extensions WebNavigation API. |
6 | 6 |
7 #include "chrome/browser/extensions/api/web_navigation/web_navigation_api_helper
s.h" | 7 #include "chrome/browser/extensions/api/web_navigation/web_navigation_api_helper
s.h" |
8 | 8 |
9 #include "base/json/json_writer.h" | 9 #include "base/json/json_writer.h" |
10 #include "base/strings/string_number_conversions.h" | 10 #include "base/strings/string_number_conversions.h" |
11 #include "base/time.h" | 11 #include "base/time.h" |
12 #include "base/values.h" | 12 #include "base/values.h" |
13 #include "chrome/browser/extensions/api/web_navigation/web_navigation_api_consta
nts.h" | 13 #include "chrome/browser/extensions/api/web_navigation/web_navigation_api_consta
nts.h" |
14 #include "chrome/browser/extensions/event_router.h" | 14 #include "chrome/browser/extensions/event_router.h" |
15 #include "chrome/browser/extensions/extension_system.h" | 15 #include "chrome/browser/extensions/extension_system.h" |
16 #include "chrome/browser/extensions/extension_tab_util.h" | 16 #include "chrome/browser/extensions/extension_tab_util.h" |
17 #include "chrome/browser/profiles/profile.h" | 17 #include "chrome/browser/profiles/profile.h" |
18 #include "chrome/common/extensions/event_filtering_info.h" | |
19 #include "content/public/browser/render_process_host.h" | 18 #include "content/public/browser/render_process_host.h" |
20 #include "content/public/browser/render_view_host.h" | 19 #include "content/public/browser/render_view_host.h" |
21 #include "content/public/browser/web_contents.h" | 20 #include "content/public/browser/web_contents.h" |
| 21 #include "extensions/common/event_filtering_info.h" |
22 #include "net/base/net_errors.h" | 22 #include "net/base/net_errors.h" |
23 | 23 |
24 namespace extensions { | 24 namespace extensions { |
25 | 25 |
26 namespace keys = web_navigation_api_constants; | 26 namespace keys = web_navigation_api_constants; |
27 | 27 |
28 namespace web_navigation_api_helpers { | 28 namespace web_navigation_api_helpers { |
29 | 29 |
30 namespace { | 30 namespace { |
31 | 31 |
(...skipping 194 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
226 ExtensionTabUtil::GetTabId(new_web_contents)); | 226 ExtensionTabUtil::GetTabId(new_web_contents)); |
227 dict->SetDouble(keys::kTimeStampKey, MilliSecondsFromTime(base::Time::Now())); | 227 dict->SetDouble(keys::kTimeStampKey, MilliSecondsFromTime(base::Time::Now())); |
228 args->Append(dict); | 228 args->Append(dict); |
229 | 229 |
230 DispatchEvent(browser_context, keys::kOnTabReplaced, args.Pass(), GURL()); | 230 DispatchEvent(browser_context, keys::kOnTabReplaced, args.Pass(), GURL()); |
231 } | 231 } |
232 | 232 |
233 } // namespace web_navigation_api_helpers | 233 } // namespace web_navigation_api_helpers |
234 | 234 |
235 } // namespace extensions | 235 } // namespace extensions |
OLD | NEW |