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

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

Issue 1909903002: Enable TabManager on Linux (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 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
« no previous file with comments | « no previous file | chrome/browser/browser_process_impl.cc » ('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 (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 // When each service is created, we set a flag indicating this. At this point, 5 // When each service is created, we set a flag indicating this. At this point,
6 // the service initialization could fail or succeed. This allows us to remember 6 // the service initialization could fail or succeed. This allows us to remember
7 // if we tried to create a service, and not try creating it over and over if 7 // if we tried to create a service, and not try creating it over and over if
8 // the creation failed. 8 // the creation failed.
9 9
10 #ifndef CHROME_BROWSER_BROWSER_PROCESS_IMPL_H_ 10 #ifndef CHROME_BROWSER_BROWSER_PROCESS_IMPL_H_
(...skipping 313 matching lines...) Expand 10 before | Expand all | Expand 10 after
324 #endif 324 #endif
325 325
326 std::unique_ptr<network_time::NetworkTimeTracker> network_time_tracker_; 326 std::unique_ptr<network_time::NetworkTimeTracker> network_time_tracker_;
327 327
328 std::unique_ptr<gcm::GCMDriver> gcm_driver_; 328 std::unique_ptr<gcm::GCMDriver> gcm_driver_;
329 329
330 std::unique_ptr<ChromeChildProcessWatcher> child_process_watcher_; 330 std::unique_ptr<ChromeChildProcessWatcher> child_process_watcher_;
331 331
332 std::unique_ptr<ChromeDeviceClient> device_client_; 332 std::unique_ptr<ChromeDeviceClient> device_client_;
333 333
334 #if defined(OS_WIN) || defined(OS_MACOSX) || defined(OS_CHROMEOS) 334 #if defined(OS_WIN) || defined(OS_MACOSX) || defined(OS_LINUX)
335 // Any change to this #ifdef must be reflected as well in 335 // Any change to this #ifdef must be reflected as well in
336 // chrome/browser/memory/tab_manager_browsertest.cc 336 // chrome/browser/memory/tab_manager_browsertest.cc
337 std::unique_ptr<memory::TabManager> tab_manager_; 337 std::unique_ptr<memory::TabManager> tab_manager_;
338 #endif 338 #endif
339 339
340 shell_integration::DefaultWebClientState cached_default_web_client_state_; 340 shell_integration::DefaultWebClientState cached_default_web_client_state_;
341 341
342 DISALLOW_COPY_AND_ASSIGN(BrowserProcessImpl); 342 DISALLOW_COPY_AND_ASSIGN(BrowserProcessImpl);
343 }; 343 };
344 344
345 #endif // CHROME_BROWSER_BROWSER_PROCESS_IMPL_H_ 345 #endif // CHROME_BROWSER_BROWSER_PROCESS_IMPL_H_
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/browser_process_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698