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

Side by Side Diff: third_party/WebKit/Source/core/frame/UseCounter.h

Issue 2050123002: Remove OwnPtr from Blink. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: First attempt to land. Created 4 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
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2012 Google, Inc. All rights reserved. 2 * Copyright (C) 2012 Google, 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 13 matching lines...) Expand all
24 */ 24 */
25 25
26 #ifndef UseCounter_h 26 #ifndef UseCounter_h
27 #define UseCounter_h 27 #define UseCounter_h
28 28
29 #include "core/CSSPropertyNames.h" 29 #include "core/CSSPropertyNames.h"
30 #include "core/CoreExport.h" 30 #include "core/CoreExport.h"
31 #include "core/css/parser/CSSParserMode.h" 31 #include "core/css/parser/CSSParserMode.h"
32 #include "wtf/BitVector.h" 32 #include "wtf/BitVector.h"
33 #include "wtf/Noncopyable.h" 33 #include "wtf/Noncopyable.h"
34 #include "wtf/OwnPtr.h"
35 #include "wtf/PassOwnPtr.h"
36 #include "wtf/text/WTFString.h" 34 #include "wtf/text/WTFString.h"
37 #include <v8.h> 35 #include <v8.h>
38 36
39 namespace blink { 37 namespace blink {
40 38
41 class CSSStyleSheet; 39 class CSSStyleSheet;
42 class Document; 40 class Document;
43 class ExecutionContext; 41 class ExecutionContext;
44 class Frame; 42 class Frame;
45 class LocalFrame; 43 class LocalFrame;
(...skipping 1257 matching lines...) Expand 10 before | Expand all | Expand 10 after
1303 friend class UseCounterTest; 1301 friend class UseCounterTest;
1304 static int m_muteCount; 1302 static int m_muteCount;
1305 1303
1306 CountBits m_countBits; 1304 CountBits m_countBits;
1307 BitVector m_CSSFeatureBits; 1305 BitVector m_CSSFeatureBits;
1308 }; 1306 };
1309 1307
1310 } // namespace blink 1308 } // namespace blink
1311 1309
1312 #endif // UseCounter_h 1310 #endif // UseCounter_h
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/frame/TopControls.h ('k') | third_party/WebKit/Source/core/frame/VisualViewport.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698