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

Side by Side Diff: chrome/browser/password_manager/password_store_factory.h

Issue 1548133002: Switch to standard integer types in chrome/browser/, part 3 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_PASSWORD_MANAGER_PASSWORD_STORE_FACTORY_H_ 5 #ifndef CHROME_BROWSER_PASSWORD_MANAGER_PASSWORD_STORE_FACTORY_H_
6 #define CHROME_BROWSER_PASSWORD_MANAGER_PASSWORD_STORE_FACTORY_H_ 6 #define CHROME_BROWSER_PASSWORD_MANAGER_PASSWORD_STORE_FACTORY_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 #include "base/basictypes.h" 10 #include "base/macros.h"
11 #include "base/memory/singleton.h" 11 #include "base/memory/singleton.h"
12 #include "build/build_config.h"
12 #include "components/keyed_service/content/refcounted_browser_context_keyed_serv ice_factory.h" 13 #include "components/keyed_service/content/refcounted_browser_context_keyed_serv ice_factory.h"
13 #include "components/keyed_service/core/service_access_type.h" 14 #include "components/keyed_service/core/service_access_type.h"
14 15
15 #if defined(USE_X11) 16 #if defined(USE_X11)
16 #include "base/nix/xdg_util.h" 17 #include "base/nix/xdg_util.h"
17 #endif 18 #endif
18 19
19 class Profile; 20 class Profile;
20 21
21 namespace password_manager { 22 namespace password_manager {
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after
99 static base::nix::DesktopEnvironment GetDesktopEnvironment(); 100 static base::nix::DesktopEnvironment GetDesktopEnvironment();
100 static void RecordBackendStatistics(base::nix::DesktopEnvironment desktop_env, 101 static void RecordBackendStatistics(base::nix::DesktopEnvironment desktop_env,
101 const std::string& command_line_flag, 102 const std::string& command_line_flag,
102 LinuxBackendUsed used_backend); 103 LinuxBackendUsed used_backend);
103 #endif 104 #endif
104 105
105 DISALLOW_COPY_AND_ASSIGN(PasswordStoreFactory); 106 DISALLOW_COPY_AND_ASSIGN(PasswordStoreFactory);
106 }; 107 };
107 108
108 #endif // CHROME_BROWSER_PASSWORD_MANAGER_PASSWORD_STORE_FACTORY_H_ 109 #endif // CHROME_BROWSER_PASSWORD_MANAGER_PASSWORD_STORE_FACTORY_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698