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

Side by Side Diff: chrome/browser/chrome_content_browser_client.h

Issue 1542413002: Switch to standard integer types in chrome/browser/, part 1 of 4. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 12 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 // 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 #ifndef CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_ 5 #ifndef CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_
6 #define CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_ 6 #define CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_
7 7
8 #include <stddef.h>
9
8 #include <set> 10 #include <set>
9 #include <string> 11 #include <string>
10 #include <utility> 12 #include <utility>
11 #include <vector> 13 #include <vector>
12 14
13 #include "base/macros.h" 15 #include "base/macros.h"
14 #include "base/memory/scoped_ptr.h" 16 #include "base/memory/scoped_ptr.h"
15 #include "base/memory/weak_ptr.h" 17 #include "base/memory/weak_ptr.h"
18 #include "build/build_config.h"
16 #include "content/public/browser/content_browser_client.h" 19 #include "content/public/browser/content_browser_client.h"
17 20
18 class ChromeContentBrowserClientParts; 21 class ChromeContentBrowserClientParts;
19 22
20 namespace base { 23 namespace base {
21 class CommandLine; 24 class CommandLine;
22 } 25 }
23 26
24 namespace content { 27 namespace content {
25 class QuotaPermissionContext; 28 class QuotaPermissionContext;
(...skipping 315 matching lines...) Expand 10 before | Expand all | Expand 10 after
341 // Vector of additional ChromeContentBrowserClientParts. 344 // Vector of additional ChromeContentBrowserClientParts.
342 // Parts are deleted in the reverse order they are added. 345 // Parts are deleted in the reverse order they are added.
343 std::vector<ChromeContentBrowserClientParts*> extra_parts_; 346 std::vector<ChromeContentBrowserClientParts*> extra_parts_;
344 347
345 base::WeakPtrFactory<ChromeContentBrowserClient> weak_factory_; 348 base::WeakPtrFactory<ChromeContentBrowserClient> weak_factory_;
346 349
347 DISALLOW_COPY_AND_ASSIGN(ChromeContentBrowserClient); 350 DISALLOW_COPY_AND_ASSIGN(ChromeContentBrowserClient);
348 }; 351 };
349 352
350 #endif // CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_ 353 #endif // CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_
OLDNEW
« no previous file with comments | « chrome/browser/chrome_child_process_watcher.h ('k') | chrome/browser/chrome_content_browser_client.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698