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

Side by Side Diff: extensions/browser/extensions_browser_client.cc

Issue 1549643002: Switch to standard integer types in extensions/browser/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@clean
Patch Set: Created 5 years 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 | « extensions/browser/extensions_browser_client.h ('k') | extensions/browser/file_highlighter.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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 #include "extensions/browser/extensions_browser_client.h" 5 #include "extensions/browser/extensions_browser_client.h"
6 6
7 #include "base/basictypes.h"
8 #include "base/logging.h" 7 #include "base/logging.h"
9 #include "components/update_client/update_client.h" 8 #include "components/update_client/update_client.h"
10 #include "extensions/browser/extension_error.h" 9 #include "extensions/browser/extension_error.h"
11 #include "extensions/browser/updater/update_client_config.h" 10 #include "extensions/browser/updater/update_client_config.h"
12 11
13 namespace extensions { 12 namespace extensions {
14 13
15 namespace { 14 namespace {
16 15
17 ExtensionsBrowserClient* g_client = NULL; 16 ExtensionsBrowserClient* g_client = NULL;
(...skipping 12 matching lines...) Expand all
30 29
31 ExtensionsBrowserClient* ExtensionsBrowserClient::Get() { 30 ExtensionsBrowserClient* ExtensionsBrowserClient::Get() {
32 return g_client; 31 return g_client;
33 } 32 }
34 33
35 void ExtensionsBrowserClient::Set(ExtensionsBrowserClient* client) { 34 void ExtensionsBrowserClient::Set(ExtensionsBrowserClient* client) {
36 g_client = client; 35 g_client = client;
37 } 36 }
38 37
39 } // namespace extensions 38 } // namespace extensions
OLDNEW
« no previous file with comments | « extensions/browser/extensions_browser_client.h ('k') | extensions/browser/file_highlighter.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698