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

Side by Side Diff: components/visitedlink/renderer/visitedlink_slave.h

Issue 19275015: Use a direct include of the shared_memory header in base/, chrome/, components/. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 5 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 | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 COMPONENTS_VISITEDLINK_RENDERER_VISITEDLINK_SLAVE_H_ 5 #ifndef COMPONENTS_VISITEDLINK_RENDERER_VISITEDLINK_SLAVE_H_
6 #define COMPONENTS_VISITEDLINK_RENDERER_VISITEDLINK_SLAVE_H_ 6 #define COMPONENTS_VISITEDLINK_RENDERER_VISITEDLINK_SLAVE_H_
7 7
8 #include "base/compiler_specific.h" 8 #include "base/compiler_specific.h"
9 #include "base/shared_memory.h" 9 #include "base/memory/shared_memory.h"
10 #include "components/visitedlink/common/visitedlink_common.h" 10 #include "components/visitedlink/common/visitedlink_common.h"
11 #include "content/public/renderer/render_process_observer.h" 11 #include "content/public/renderer/render_process_observer.h"
12 12
13 namespace visitedlink { 13 namespace visitedlink {
14 14
15 // Reads the link coloring database provided by the master. There can be any 15 // Reads the link coloring database provided by the master. There can be any
16 // number of slaves reading the same database. 16 // number of slaves reading the same database.
17 class VisitedLinkSlave : public VisitedLinkCommon, 17 class VisitedLinkSlave : public VisitedLinkCommon,
18 public content::RenderProcessObserver { 18 public content::RenderProcessObserver {
19 public: 19 public:
(...skipping 13 matching lines...) Expand all
33 33
34 // shared memory consists of a SharedHeader followed by the table 34 // shared memory consists of a SharedHeader followed by the table
35 base::SharedMemory* shared_memory_; 35 base::SharedMemory* shared_memory_;
36 36
37 DISALLOW_COPY_AND_ASSIGN(VisitedLinkSlave); 37 DISALLOW_COPY_AND_ASSIGN(VisitedLinkSlave);
38 }; 38 };
39 39
40 } // namespace visitedlink 40 } // namespace visitedlink
41 41
42 #endif // COMPONENTS_VISITEDLINK_RENDERER_VISITEDLINK_SLAVE_H_ 42 #endif // COMPONENTS_VISITEDLINK_RENDERER_VISITEDLINK_SLAVE_H_
OLDNEW
« no previous file with comments | « components/visitedlink/common/visitedlink_messages.h ('k') | components/visitedlink/renderer/visitedlink_slave.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698