summaryrefslogtreecommitdiffstats
path: root/webkit/port/page/ChromeClientWin.h
diff options
context:
space:
mode:
authordarin@chromium.org <darin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2008-10-15 22:01:57 +0000
committerdarin@chromium.org <darin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2008-10-15 22:01:57 +0000
commit8939e9ecf23f09460c91543c783bed0bac780014 (patch)
treebd6930f74b05846299da0283c9da3f4c39fa1b24 /webkit/port/page/ChromeClientWin.h
parent10e42bf623bcc526e25d5b22760cce3d0766039b (diff)
downloadchromium_src-8939e9ecf23f09460c91543c783bed0bac780014.zip
chromium_src-8939e9ecf23f09460c91543c783bed0bac780014.tar.gz
chromium_src-8939e9ecf23f09460c91543c783bed0bac780014.tar.bz2
Move many files that were suffixed Win.cpp to Chromium.cpp, and place them in chromium/ subdirectories. We still build these files with PLATFORM(WIN) defined.
In this change, I also killed off LogWin.{h,cpp} since we don't use it. So, you will see some changes related to that. R=dglazkov,tony Review URL: http://codereview.chromium.org/7419 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@3427 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/port/page/ChromeClientWin.h')
-rw-r--r--webkit/port/page/ChromeClientWin.h31
1 files changed, 0 insertions, 31 deletions
diff --git a/webkit/port/page/ChromeClientWin.h b/webkit/port/page/ChromeClientWin.h
deleted file mode 100644
index cb40e43..0000000
--- a/webkit/port/page/ChromeClientWin.h
+++ /dev/null
@@ -1,31 +0,0 @@
-// Copyright (c) 2006-2008 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 ChromeClientWin_h
-#define ChromeClientWin_h
-
-#include <wtf/Forward.h>
-
-#include "ChromeClient.h"
-
-namespace WebCore {
-
- class FileChooser;
- class Frame;
- class String;
-
- class ChromeClientWin : public ChromeClient {
- public:
- // Opens the file selection dialog.
- virtual void runFileChooser(const String& defaultFileName,
- PassRefPtr<FileChooser> file_chooser) = 0;
-
- // Given a rect in main frame coordinates, returns a new rect relative
- // to the screen.
- virtual IntRect windowToScreen(const IntRect& rect) = 0;
- };
-}
-
-#endif // ChromeClientWin_h
-