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

Unified Diff: chrome/browser/browser_process.h

Issue 12895: Chromium-MultiProfile-Prototype... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 12 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/browser_main.cc ('k') | chrome/browser/dom_ui/new_tab_ui.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/browser_process.h
===================================================================
--- chrome/browser/browser_process.h (revision 6272)
+++ chrome/browser/browser_process.h (working copy)
@@ -11,6 +11,7 @@
#define CHROME_BROWSER_BROWSER_PROCESS_H__
#include <string>
+#include <vector>
#include "base/basictypes.h"
#include "base/message_loop.h"
@@ -134,7 +135,15 @@
virtual HANDLE shutdown_event() = 0;
#endif
+ // Returns a reference to the user-data-dir based profiles vector.
+ std::vector<std::wstring>& user_data_dir_profiles() {
+ return user_data_dir_profiles_;
+ }
+
private:
+ // User-data-dir based profiles.
+ std::vector<std::wstring> user_data_dir_profiles_;
+
DISALLOW_EVIL_CONSTRUCTORS(BrowserProcess);
};
« no previous file with comments | « chrome/browser/browser_main.cc ('k') | chrome/browser/dom_ui/new_tab_ui.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698