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

Side by Side Diff: Source/platform/mac/ThemeMac.mm

Issue 512293003: Removing "using" declarations that import names in the C++ Standard library.(Source/platform/[m* - … (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 3 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
« no previous file with comments | « Source/platform/mac/ScrollAnimatorMac.mm ('k') | Source/platform/network/HTTPHeaderMap.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2008, 2010, 2011, 2012 Apple Inc. All Rights Reserved. 2 * Copyright (C) 2008, 2010, 2011, 2012 Apple Inc. All Rights Reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions 5 * modification, are permitted provided that the following conditions
6 * are met: 6 * are met:
7 * 1. Redistributions of source code must retain the above copyright 7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer. 8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright 9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the 10 * notice, this list of conditions and the following disclaimer in the
(...skipping 16 matching lines...) Expand all
27 #import "platform/mac/ThemeMac.h" 27 #import "platform/mac/ThemeMac.h"
28 28
29 #import <Carbon/Carbon.h> 29 #import <Carbon/Carbon.h>
30 #import "platform/graphics/GraphicsContextStateSaver.h" 30 #import "platform/graphics/GraphicsContextStateSaver.h"
31 #import "platform/mac/BlockExceptions.h" 31 #import "platform/mac/BlockExceptions.h"
32 #import "platform/mac/LocalCurrentGraphicsContext.h" 32 #import "platform/mac/LocalCurrentGraphicsContext.h"
33 #import "platform/mac/WebCoreNSCellExtras.h" 33 #import "platform/mac/WebCoreNSCellExtras.h"
34 #import "platform/scroll/ScrollView.h" 34 #import "platform/scroll/ScrollView.h"
35 #include "wtf/StdLibExtras.h" 35 #include "wtf/StdLibExtras.h"
36 36
37 using namespace std;
38
39 NSRect focusRingClipRect; 37 NSRect focusRingClipRect;
40 38
41 // This is a view whose sole purpose is to tell AppKit that it's flipped. 39 // This is a view whose sole purpose is to tell AppKit that it's flipped.
42 @interface WebCoreFlippedView : NSControl 40 @interface WebCoreFlippedView : NSControl
43 @end 41 @end
44 42
45 @implementation WebCoreFlippedView 43 @implementation WebCoreFlippedView
46 44
47 - (BOOL)isFlipped 45 - (BOOL)isFlipped
48 { 46 {
(...skipping 688 matching lines...) Expand 10 before | Expand all | Expand 10 after
737 break; 735 break;
738 case InnerSpinButtonPart: 736 case InnerSpinButtonPart:
739 paintStepper(states, context, zoomedRect, zoomFactor, scrollView); 737 paintStepper(states, context, zoomedRect, zoomFactor, scrollView);
740 break; 738 break;
741 default: 739 default:
742 break; 740 break;
743 } 741 }
744 } 742 }
745 743
746 } 744 }
OLDNEW
« no previous file with comments | « Source/platform/mac/ScrollAnimatorMac.mm ('k') | Source/platform/network/HTTPHeaderMap.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698