| 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 #include "chrome/browser/geolocation/geolocation_permission_context.h" | 5 #include "chrome/browser/geolocation/geolocation_permission_context.h" |
| 6 | 6 |
| 7 #include <set> | 7 #include <set> |
| 8 #include <string> | 8 #include <string> |
| 9 #include <utility> | 9 #include <utility> |
| 10 | 10 |
| (...skipping 22 matching lines...) Expand all Loading... |
| 33 #include "content/public/browser/web_contents.h" | 33 #include "content/public/browser/web_contents.h" |
| 34 #include "content/public/test/mock_render_process_host.h" | 34 #include "content/public/test/mock_render_process_host.h" |
| 35 #include "content/public/test/test_renderer_host.h" | 35 #include "content/public/test/test_renderer_host.h" |
| 36 #include "content/public/test/test_utils.h" | 36 #include "content/public/test/test_utils.h" |
| 37 #include "content/public/test/web_contents_tester.h" | 37 #include "content/public/test/web_contents_tester.h" |
| 38 #include "testing/gtest/include/gtest/gtest.h" | 38 #include "testing/gtest/include/gtest/gtest.h" |
| 39 | 39 |
| 40 #if defined(OS_ANDROID) | 40 #if defined(OS_ANDROID) |
| 41 #include "base/prefs/pref_service.h" | 41 #include "base/prefs/pref_service.h" |
| 42 #include "chrome/browser/android/mock_google_location_settings_helper.h" | 42 #include "chrome/browser/android/mock_google_location_settings_helper.h" |
| 43 #include "chrome/common/pref_names.h" | |
| 44 #endif | 43 #endif |
| 45 | 44 |
| 46 #if defined(ENABLE_EXTENSIONS) | 45 #if defined(ENABLE_EXTENSIONS) |
| 47 #include "extensions/browser/view_type_utils.h" | 46 #include "extensions/browser/view_type_utils.h" |
| 48 #endif | 47 #endif |
| 49 | 48 |
| 50 using content::MockRenderProcessHost; | 49 using content::MockRenderProcessHost; |
| 51 | 50 |
| 52 | 51 |
| 53 // ClosedInfoBarTracker ------------------------------------------------------- | 52 // ClosedInfoBarTracker ------------------------------------------------------- |
| (...skipping 721 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 775 // it is the embedder. | 774 // it is the embedder. |
| 776 EXPECT_EQ(map->GetLastUsage(requesting_frame_0.GetOrigin(), | 775 EXPECT_EQ(map->GetLastUsage(requesting_frame_0.GetOrigin(), |
| 777 requesting_frame_0.GetOrigin(), | 776 requesting_frame_0.GetOrigin(), |
| 778 CONTENT_SETTINGS_TYPE_GEOLOCATION).ToDoubleT(), | 777 CONTENT_SETTINGS_TYPE_GEOLOCATION).ToDoubleT(), |
| 779 13); | 778 13); |
| 780 EXPECT_EQ(map->GetLastUsage(requesting_frame_1.GetOrigin(), | 779 EXPECT_EQ(map->GetLastUsage(requesting_frame_1.GetOrigin(), |
| 781 requesting_frame_0.GetOrigin(), | 780 requesting_frame_0.GetOrigin(), |
| 782 CONTENT_SETTINGS_TYPE_GEOLOCATION).ToDoubleT(), | 781 CONTENT_SETTINGS_TYPE_GEOLOCATION).ToDoubleT(), |
| 783 11); | 782 11); |
| 784 } | 783 } |
| OLD | NEW |