Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(133)

Side by Side Diff: chrome/browser/ui/cocoa/extensions/browser_actions_container_view.mm

Issue 17627005: mac: Remove unused includes of scoped_nsobject.h. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: builds Created 7 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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/extensions/browser_actions_container_view.h" 5 #import "chrome/browser/ui/cocoa/extensions/browser_actions_container_view.h"
6 6
7 #include <algorithm> 7 #include <algorithm>
8 8
9 #include "base/basictypes.h" 9 #include "base/basictypes.h"
10 #import "base/mac/scoped_nsobject.h"
11 #import "chrome/browser/ui/cocoa/view_id_util.h" 10 #import "chrome/browser/ui/cocoa/view_id_util.h"
12 11
13 NSString* const kBrowserActionGrippyDragStartedNotification = 12 NSString* const kBrowserActionGrippyDragStartedNotification =
14 @"BrowserActionGrippyDragStartedNotification"; 13 @"BrowserActionGrippyDragStartedNotification";
15 NSString* const kBrowserActionGrippyDraggingNotification = 14 NSString* const kBrowserActionGrippyDraggingNotification =
16 @"BrowserActionGrippyDraggingNotification"; 15 @"BrowserActionGrippyDraggingNotification";
17 NSString* const kBrowserActionGrippyDragFinishedNotification = 16 NSString* const kBrowserActionGrippyDragFinishedNotification =
18 @"BrowserActionGrippyDragFinishedNotification"; 17 @"BrowserActionGrippyDragFinishedNotification";
19 18
20 namespace { 19 namespace {
(...skipping 162 matching lines...) Expand 10 before | Expand all | Expand 10 after
183 retVal = [NSCursor resizeRightCursor]; 182 retVal = [NSCursor resizeRightCursor];
184 } else if (!canDragRight_) { 183 } else if (!canDragRight_) {
185 retVal = [NSCursor resizeLeftCursor]; 184 retVal = [NSCursor resizeLeftCursor];
186 } else { 185 } else {
187 retVal = [NSCursor resizeLeftRightCursor]; 186 retVal = [NSCursor resizeLeftRightCursor];
188 } 187 }
189 return retVal; 188 return retVal;
190 } 189 }
191 190
192 @end 191 @end
OLDNEW
« no previous file with comments | « chrome/browser/ui/cocoa/draggable_button_mixin.mm ('k') | chrome/browser/ui/cocoa/extensions/extension_action_context_menu.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698