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

Unified Diff: chrome/browser/browser_process_platform_part_base.h

Issue 14951007: Refactor BrowserProcessPlatformPart. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix ios? Created 7 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/browser_process_platform_part_base.h
diff --git a/chrome/browser/browser_process_platform_part.h b/chrome/browser/browser_process_platform_part_base.h
similarity index 51%
copy from chrome/browser/browser_process_platform_part.h
copy to chrome/browser/browser_process_platform_part_base.h
index 01000a0110ca0afd480a7596bd11d1c19d2054bc..f63a441654120278230a9ee35c0888290433537a 100644
--- a/chrome/browser/browser_process_platform_part.h
+++ b/chrome/browser/browser_process_platform_part_base.h
@@ -2,17 +2,19 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#ifndef CHROME_BROWSER_BROWSER_PROCESS_PLATFORM_PART_H_
-#define CHROME_BROWSER_BROWSER_PROCESS_PLATFORM_PART_H_
+#ifndef CHROME_BROWSER_BROWSER_PROCESS_PLATFORM_PART_BASE_H_
+#define CHROME_BROWSER_BROWSER_PROCESS_PLATFORM_PART_BASE_H_
#include "base/basictypes.h"
class CommandLine;
-class BrowserProcessPlatformPart {
+// A base class for platform-specific BrowserProcessPlatformPart
+// implementations. This class itself should never be used verbatim.
+class BrowserProcessPlatformPartBase {
public:
- BrowserProcessPlatformPart();
- virtual ~BrowserProcessPlatformPart();
+ BrowserProcessPlatformPartBase();
+ virtual ~BrowserProcessPlatformPartBase();
// Called after creating the process singleton or when another chrome
// rendez-vous with this one.
@@ -23,7 +25,7 @@ class BrowserProcessPlatformPart {
virtual void StartTearDown();
private:
- DISALLOW_COPY_AND_ASSIGN(BrowserProcessPlatformPart);
+ DISALLOW_COPY_AND_ASSIGN(BrowserProcessPlatformPartBase);
};
-#endif // CHROME_BROWSER_BROWSER_PROCESS_PLATFORM_PART_H_
+#endif // CHROME_BROWSER_BROWSER_PROCESS_PLATFORM_PART_BASE_H_
« no previous file with comments | « chrome/browser/browser_process_platform_part_aurawin.cc ('k') | chrome/browser/browser_process_platform_part_base.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698