| 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/extensions/api/tabs/tabs_api.h" | 5 #include "chrome/browser/extensions/api/tabs/tabs_api.h" |
| 6 | 6 |
| 7 #include <algorithm> | 7 #include <algorithm> |
| 8 #include <limits> | 8 #include <limits> |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| (...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 105 using content::Referrer; | 105 using content::Referrer; |
| 106 using content::WebContents; | 106 using content::WebContents; |
| 107 using ui_zoom::ZoomController; | 107 using ui_zoom::ZoomController; |
| 108 | 108 |
| 109 namespace extensions { | 109 namespace extensions { |
| 110 | 110 |
| 111 namespace windows = api::windows; | 111 namespace windows = api::windows; |
| 112 namespace keys = tabs_constants; | 112 namespace keys = tabs_constants; |
| 113 namespace tabs = api::tabs; | 113 namespace tabs = api::tabs; |
| 114 | 114 |
| 115 using core_api::extension_types::InjectDetails; | 115 using api::extension_types::InjectDetails; |
| 116 | 116 |
| 117 namespace { | 117 namespace { |
| 118 | 118 |
| 119 bool GetBrowserFromWindowID(ChromeUIThreadExtensionFunction* function, | 119 bool GetBrowserFromWindowID(ChromeUIThreadExtensionFunction* function, |
| 120 int window_id, | 120 int window_id, |
| 121 Browser** browser) { | 121 Browser** browser) { |
| 122 std::string error; | 122 std::string error; |
| 123 Browser* result; | 123 Browser* result; |
| 124 result = | 124 result = |
| 125 ExtensionTabUtil::GetBrowserFromWindowID(function, window_id, &error); | 125 ExtensionTabUtil::GetBrowserFromWindowID(function, window_id, &error); |
| (...skipping 1900 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2026 ZoomModeToZoomSettings(zoom_mode, &zoom_settings); | 2026 ZoomModeToZoomSettings(zoom_mode, &zoom_settings); |
| 2027 zoom_settings.default_zoom_factor.reset(new double( | 2027 zoom_settings.default_zoom_factor.reset(new double( |
| 2028 content::ZoomLevelToZoomFactor(zoom_controller->GetDefaultZoomLevel()))); | 2028 content::ZoomLevelToZoomFactor(zoom_controller->GetDefaultZoomLevel()))); |
| 2029 | 2029 |
| 2030 results_ = api::tabs::GetZoomSettings::Results::Create(zoom_settings); | 2030 results_ = api::tabs::GetZoomSettings::Results::Create(zoom_settings); |
| 2031 SendResponse(true); | 2031 SendResponse(true); |
| 2032 return true; | 2032 return true; |
| 2033 } | 2033 } |
| 2034 | 2034 |
| 2035 } // namespace extensions | 2035 } // namespace extensions |
| OLD | NEW |