| 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 Cookies API. | 5 // Implements the Chrome Extensions Cookies API. |
| 6 | 6 |
| 7 #include "chrome/browser/extensions/api/cookies/cookies_api.h" | 7 #include "chrome/browser/extensions/api/cookies/cookies_api.h" |
| 8 | 8 |
| 9 #include "base/bind.h" | 9 #include "base/bind.h" |
| 10 #include "base/json/json_writer.h" | 10 #include "base/json/json_writer.h" |
| 11 #include "base/values.h" | 11 #include "base/values.h" |
| 12 #include "chrome/browser/extensions/api/cookies/cookies_api_constants.h" | 12 #include "chrome/browser/extensions/api/cookies/cookies_api_constants.h" |
| 13 #include "chrome/browser/extensions/api/cookies/cookies_helpers.h" | 13 #include "chrome/browser/extensions/api/cookies/cookies_helpers.h" |
| 14 #include "chrome/browser/extensions/extension_event_router.h" | 14 #include "chrome/browser/extensions/extension_event_router.h" |
| 15 #include "chrome/browser/profiles/profile.h" | 15 #include "chrome/browser/profiles/profile.h" |
| 16 #include "chrome/browser/ui/browser.h" | 16 #include "chrome/browser/ui/browser.h" |
| 17 #include "chrome/browser/ui/browser_list.h" | 17 #include "chrome/browser/ui/browser_list.h" |
| 18 #include "chrome/common/chrome_notification_types.h" | 18 #include "chrome/common/chrome_notification_types.h" |
| 19 #include "chrome/common/extensions/extension.h" | 19 #include "chrome/common/extensions/extension.h" |
| 20 #include "chrome/common/extensions/extension_error_utils.h" | 20 #include "chrome/common/extensions/extension_error_utils.h" |
| 21 #include "content/public/browser/browser_thread.h" | 21 #include "content/public/browser/browser_thread.h" |
| 22 #include "content/public/browser/notification_service.h" | 22 #include "content/public/browser/notification_service.h" |
| 23 #include "net/cookies/canonical_cookie.h" |
| 23 #include "net/cookies/cookie_monster.h" | 24 #include "net/cookies/cookie_monster.h" |
| 24 #include "net/url_request/url_request_context.h" | 25 #include "net/url_request/url_request_context.h" |
| 25 #include "net/url_request/url_request_context_getter.h" | 26 #include "net/url_request/url_request_context_getter.h" |
| 26 | 27 |
| 27 using content::BrowserThread; | 28 using content::BrowserThread; |
| 28 | 29 |
| 29 namespace extensions { | 30 namespace extensions { |
| 30 namespace keys = cookies_api_constants; | 31 namespace keys = cookies_api_constants; |
| 31 | 32 |
| 32 ExtensionCookiesEventRouter::ExtensionCookiesEventRouter(Profile* profile) | 33 ExtensionCookiesEventRouter::ExtensionCookiesEventRouter(Profile* profile) |
| (...skipping 503 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 536 } | 537 } |
| 537 SetResult(cookie_store_list); | 538 SetResult(cookie_store_list); |
| 538 return true; | 539 return true; |
| 539 } | 540 } |
| 540 | 541 |
| 541 void GetAllCookieStoresFunction::Run() { | 542 void GetAllCookieStoresFunction::Run() { |
| 542 SendResponse(RunImpl()); | 543 SendResponse(RunImpl()); |
| 543 } | 544 } |
| 544 | 545 |
| 545 } // namespace extensions | 546 } // namespace extensions |
| OLD | NEW |