| 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 #import "chrome/browser/ui/cocoa/tabs/tab_strip_controller.h" | 5 #import "chrome/browser/ui/cocoa/tabs/tab_strip_controller.h" |
| 6 | 6 |
| 7 #import <QuartzCore/QuartzCore.h> | 7 #import <QuartzCore/QuartzCore.h> |
| 8 | 8 |
| 9 #include <cmath> | 9 #include <cmath> |
| 10 #include <limits> | 10 #include <limits> |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 42 #import "chrome/browser/ui/cocoa/tabs/tab_view.h" | 42 #import "chrome/browser/ui/cocoa/tabs/tab_view.h" |
| 43 #include "chrome/browser/ui/find_bar/find_bar.h" | 43 #include "chrome/browser/ui/find_bar/find_bar.h" |
| 44 #include "chrome/browser/ui/find_bar/find_bar_controller.h" | 44 #include "chrome/browser/ui/find_bar/find_bar_controller.h" |
| 45 #include "chrome/browser/ui/find_bar/find_tab_helper.h" | 45 #include "chrome/browser/ui/find_bar/find_tab_helper.h" |
| 46 #include "chrome/browser/ui/tabs/tab_menu_model.h" | 46 #include "chrome/browser/ui/tabs/tab_menu_model.h" |
| 47 #include "chrome/browser/ui/tabs/tab_strip_model.h" | 47 #include "chrome/browser/ui/tabs/tab_strip_model.h" |
| 48 #include "chrome/browser/ui/tabs/tab_strip_model_delegate.h" | 48 #include "chrome/browser/ui/tabs/tab_strip_model_delegate.h" |
| 49 #include "chrome/browser/ui/tabs/tab_utils.h" | 49 #include "chrome/browser/ui/tabs/tab_utils.h" |
| 50 #include "chrome/common/chrome_switches.h" | 50 #include "chrome/common/chrome_switches.h" |
| 51 #include "chrome/common/pref_names.h" | 51 #include "chrome/common/pref_names.h" |
| 52 #include "chrome/grit/generated_resources.h" |
| 52 #include "components/metrics/proto/omnibox_event.pb.h" | 53 #include "components/metrics/proto/omnibox_event.pb.h" |
| 53 #include "components/omnibox/autocomplete_match.h" | 54 #include "components/omnibox/autocomplete_match.h" |
| 54 #include "components/url_fixer/url_fixer.h" | 55 #include "components/url_fixer/url_fixer.h" |
| 55 #include "components/web_modal/web_contents_modal_dialog_manager.h" | 56 #include "components/web_modal/web_contents_modal_dialog_manager.h" |
| 56 #include "content/public/browser/navigation_controller.h" | 57 #include "content/public/browser/navigation_controller.h" |
| 57 #include "content/public/browser/user_metrics.h" | 58 #include "content/public/browser/user_metrics.h" |
| 58 #include "content/public/browser/web_contents.h" | 59 #include "content/public/browser/web_contents.h" |
| 59 #include "grit/generated_resources.h" | |
| 60 #include "grit/theme_resources.h" | 60 #include "grit/theme_resources.h" |
| 61 #include "skia/ext/skia_utils_mac.h" | 61 #include "skia/ext/skia_utils_mac.h" |
| 62 #import "third_party/google_toolbox_for_mac/src/AppKit/GTMNSAnimation+Duration.h
" | 62 #import "third_party/google_toolbox_for_mac/src/AppKit/GTMNSAnimation+Duration.h
" |
| 63 #include "ui/base/cocoa/animation_utils.h" | 63 #include "ui/base/cocoa/animation_utils.h" |
| 64 #import "ui/base/cocoa/tracking_area.h" | 64 #import "ui/base/cocoa/tracking_area.h" |
| 65 #include "ui/base/l10n/l10n_util.h" | 65 #include "ui/base/l10n/l10n_util.h" |
| 66 #include "ui/base/models/list_selection_model.h" | 66 #include "ui/base/models/list_selection_model.h" |
| 67 #include "ui/base/resource/resource_bundle.h" | 67 #include "ui/base/resource/resource_bundle.h" |
| 68 #include "ui/base/theme_provider.h" | 68 #include "ui/base/theme_provider.h" |
| 69 #include "ui/gfx/image/image.h" | 69 #include "ui/gfx/image/image.h" |
| (...skipping 2159 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2229 } | 2229 } |
| 2230 | 2230 |
| 2231 NSRect GetSheetParentBoundsForParentView(NSView* view) { | 2231 NSRect GetSheetParentBoundsForParentView(NSView* view) { |
| 2232 // If the devtools view is open, it shrinks the size of the WebContents, so go | 2232 // If the devtools view is open, it shrinks the size of the WebContents, so go |
| 2233 // up the hierarchy to the devtools container view to avoid that. Note that | 2233 // up the hierarchy to the devtools container view to avoid that. Note that |
| 2234 // the devtools view is always in the hierarchy even if it is not open or it | 2234 // the devtools view is always in the hierarchy even if it is not open or it |
| 2235 // is detached. | 2235 // is detached. |
| 2236 NSView* devtools_view = [[[view superview] superview] superview]; | 2236 NSView* devtools_view = [[[view superview] superview] superview]; |
| 2237 return [devtools_view convertRect:[devtools_view bounds] toView:nil]; | 2237 return [devtools_view convertRect:[devtools_view bounds] toView:nil]; |
| 2238 } | 2238 } |
| OLD | NEW |