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

Unified Diff: chrome/renderer/visitedlink_slave.h

Issue 10895: Add Terminate() to the Process object, have RenderProcessHost use this to avo... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 12 years, 1 month 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/renderer/renderer_glue.cc ('k') | chrome/renderer/visitedlink_slave.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/renderer/visitedlink_slave.h
===================================================================
--- chrome/renderer/visitedlink_slave.h (revision 5371)
+++ chrome/renderer/visitedlink_slave.h (working copy)
@@ -2,8 +2,8 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#ifndef CHROME_WIN_RENDERER_VISITEDLINK_SLAVE_H__
-#define CHROME_WIN_RENDERER_VISITEDLINK_SLAVE_H__
+#ifndef CHROME_RENDERER_VISITEDLINK_SLAVE_H_
+#define CHROME_RENDERER_VISITEDLINK_SLAVE_H_
#include "base/shared_memory.h"
#include "chrome/common/visitedlink_common.h"
@@ -20,15 +20,15 @@
// It can also be called again at any time to update the table that we're
// using. The handle should be the handle generated by the VisitedLinkMaster.
// Returns true on success.
- bool Init(SharedMemoryHandle shared_memory);
+ bool Init(base::SharedMemoryHandle shared_memory);
private:
void FreeTable();
// shared memory consists of a SharedHeader followed by the table
- SharedMemory* shared_memory_;
+ base::SharedMemory* shared_memory_;
- DISALLOW_EVIL_CONSTRUCTORS(VisitedLinkSlave);
+ DISALLOW_COPY_AND_ASSIGN(VisitedLinkSlave);
};
-#endif // WIN_RENDERER_VISITEDLINK_SLAVE_H__
+#endif // CHROME_RENDERER_VISITEDLINK_SLAVE_H_
« no previous file with comments | « chrome/renderer/renderer_glue.cc ('k') | chrome/renderer/visitedlink_slave.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698