diff options
author | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-06-25 00:21:07 +0000 |
---|---|---|
committer | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-06-25 00:21:07 +0000 |
commit | 9cbab6520cd7684fd90982a4fe6fb84c87ba4492 (patch) | |
tree | 49fbed1c40ca3a5052fe7af8e9b3a4c994f3796b /content | |
parent | a6e9dce2f8c811744693bfdd85a585ea6d26e752 (diff) | |
download | chromium_src-9cbab6520cd7684fd90982a4fe6fb84c87ba4492.zip chromium_src-9cbab6520cd7684fd90982a4fe6fb84c87ba4492.tar.gz chromium_src-9cbab6520cd7684fd90982a4fe6fb84c87ba4492.tar.bz2 |
Move app/win/* files to base/win/, ui/base/win and chrome/common/ directories.
BUG=72317
TEST=None
R=rsesek@chromium.org,brettw@chromium.org
Review URL: http://codereview.chromium.org/7231016
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@90464 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content')
-rw-r--r-- | content/browser/geolocation/win7_location_api_win.h | 8 | ||||
-rw-r--r-- | content/common/gpu/gpu_channel_manager.cc | 2 | ||||
-rw-r--r-- | content/gpu/gpu_child_thread.cc | 4 | ||||
-rw-r--r-- | content/gpu/gpu_main.cc | 4 |
4 files changed, 9 insertions, 9 deletions
diff --git a/content/browser/geolocation/win7_location_api_win.h b/content/browser/geolocation/win7_location_api_win.h index 4a33ab1..c648b8c 100644 --- a/content/browser/geolocation/win7_location_api_win.h +++ b/content/browser/geolocation/win7_location_api_win.h @@ -1,18 +1,18 @@ -// Copyright (c) 2010 The Chromium Authors. All rights reserved. +// Copyright (c) 2011 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef CONTENT_BROWSER_GEOLOCATION_WIN7_LOCATION_API_WIN_H_ #define CONTENT_BROWSER_GEOLOCATION_WIN7_LOCATION_API_WIN_H_ +#include <windows.h> #include <atlbase.h> #include <atlcom.h> #include <locationapi.h> #include <sensors.h> -#include <Windows.h> -#include "app/win/scoped_com_initializer.h" #include "base/time.h" +#include "base/win/scoped_com_initializer.h" struct Geoposition; @@ -50,7 +50,7 @@ class Win7LocationApi { virtual bool GetPositionIfFixed(Geoposition* position); // Ensure that COM has been initialized for this thread. - app::win::ScopedCOMInitializer com_initializer_; + base::win::ScopedCOMInitializer com_initializer_; // ILocation object that lets us communicate with the Location and // Sensors platform. CComPtr<ILocation> locator_; diff --git a/content/common/gpu/gpu_channel_manager.cc b/content/common/gpu/gpu_channel_manager.cc index 21187c6..14b69eb 100644 --- a/content/common/gpu/gpu_channel_manager.cc +++ b/content/common/gpu/gpu_channel_manager.cc @@ -7,9 +7,9 @@ #include <string> #include <vector> -#include "app/win/scoped_com_initializer.h" #include "base/command_line.h" #include "base/threading/worker_pool.h" +#include "base/win/scoped_com_initializer.h" #include "build/build_config.h" #include "content/common/child_process.h" #include "content/common/gpu/gpu_messages.h" diff --git a/content/gpu/gpu_child_thread.cc b/content/gpu/gpu_child_thread.cc index ec62d13..62336cc 100644 --- a/content/gpu/gpu_child_thread.cc +++ b/content/gpu/gpu_child_thread.cc @@ -7,9 +7,9 @@ #include <string> #include <vector> -#include "app/win/scoped_com_initializer.h" #include "base/command_line.h" #include "base/threading/worker_pool.h" +#include "base/win/scoped_com_initializer.h" #include "build/build_config.h" #include "content/common/child_process.h" #include "content/common/content_client.h" @@ -259,7 +259,7 @@ void GpuChildThread::OnHang() { // Runs on a worker thread. The GPU process never terminates voluntarily so // it is safe to assume that its message loop is valid. void GpuChildThread::CollectDxDiagnostics(GpuChildThread* thread) { - app::win::ScopedCOMInitializer com_initializer; + base::win::ScopedCOMInitializer com_initializer; DxDiagNode node; gpu_info_collector::GetDxDiagnostics(&node); diff --git a/content/gpu/gpu_main.cc b/content/gpu/gpu_main.cc index 422175c..cea11e6 100644 --- a/content/gpu/gpu_main.cc +++ b/content/gpu/gpu_main.cc @@ -8,11 +8,11 @@ #include <windows.h> #endif -#include "app/win/scoped_com_initializer.h" #include "base/environment.h" #include "base/message_loop.h" #include "base/stringprintf.h" #include "base/threading/platform_thread.h" +#include "base/win/scoped_com_initializer.h" #include "build/build_config.h" #include "content/common/content_switches.h" #include "content/common/gpu/gpu_config.h" @@ -57,7 +57,7 @@ int GpuMain(const MainFunctionParams& parameters) { #endif } - app::win::ScopedCOMInitializer com_initializer; + base::win::ScopedCOMInitializer com_initializer; // We can not tolerate early returns from this code, because the // detection of early return of a child process is implemented using |